InvokeAI/scripts/dream.py
2022-11-18 19:34:28 +00:00

11 lines
322 B
Python

#!/usr/bin/env python3
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
import warnings
import ldm.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)
ldm.invoke.CLI.main()