mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2025-04-28 16:18:25 +08:00
15 lines
320 B
Python
Executable File
15 lines
320 B
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
|
|
|
|
import warnings
|
|
|
|
from invokeai.app.cli_app import invoke_cli
|
|
|
|
warnings.warn(
|
|
"dream.py is being deprecated, please run invoke.py for the " "new UI/API or legacy_api.py for the old API",
|
|
DeprecationWarning,
|
|
)
|
|
|
|
|
|
invoke_cli()
|