mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
14 lines
319 B
Python
Executable File
14 lines
319 B
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
|
|
|
|
import warnings
|
|
|
|
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,
|
|
)
|
|
|
|
from invokeai.app.cli_app import invoke_cli
|
|
|
|
invoke_cli()
|