mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
2ff47cdecf
- add torch MPS fallback directly to CLI.py - rename CLI scripts with `invoke-...` prefix - delete long-deprecated scripts - add a missing package dependency - delete setup.py as obsolete
10 lines
310 B
Python
10 lines
310 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
|
|
|
|
import warnings
|
|
from ldm.invoke.config import configure_invokeai
|
|
|
|
if __name__ == '__main__':
|
|
warnings.warn("configire_invokeai.py is deprecated, please run 'invoke'", DeprecationWarning)
|
|
configure_invokeai.main()
|