added stats service to the cli_app startup

This commit is contained in:
Lincoln Stein
2023-08-02 18:41:43 -04:00
parent 05c9207e7b
commit 921ccad04d
2 changed files with 6 additions and 2 deletions

View File

@ -2,10 +2,12 @@
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
import warnings
from invokeai.frontend.CLI import invokeai_command_line_interface as main
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,
)
main()
from invokeai.app.cli_app import invoke_cli
invoke_cli()