(config) move configure_invokeai script to the config module for easier importing

This commit is contained in:
Eugene Brodsky
2023-01-13 04:09:48 -05:00
parent 071a438745
commit 88526b9294
4 changed files with 15 additions and 10 deletions

View File

@ -0,0 +1,11 @@
#!/usr/bin/env python
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
# Before running stable-diffusion on an internet-isolated machine,
# run this script from one with internet connectivity. The
# two machines must share a common .cache directory.
import warnings
from ldm.invoke.config import configure_invokeai
if __name__ == '__main__':
configure_invokeai.main()