mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
60213893ab
- Rename configure_invokeai.py to invokeai_configure.py to be consistent with installed script name - Remove warning message about half-precision models not being available during the model download process. - adjust estimated file size reported by configure - guesstimate disk space needed for "all" models - fix up the "latest" tag to be named 'v2.3-latest'
10 lines
321 B
Python
10 lines
321 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
|
|
|
|
import warnings
|
|
from ldm.invoke.config import invokeai_configure
|
|
|
|
if __name__ == '__main__':
|
|
warnings.warn("configure_invokeai.py is deprecated, please run 'invokai-configure'", DeprecationWarning)
|
|
configure_invokeai.main()
|