InvokeAI/ldm/invoke/globals.py
2022-11-15 18:39:31 +00:00

16 lines
381 B
Python

'''
ldm.invoke.globals defines a small number of global variables that would
otherwise have to be passed through long and complex call chains.
It defines a Namespace object named "Globals" that contains
the attributes:
- root - the root directory under which "models" and "outputs" can be found
'''
from argparse import Namespace
Globals = Namespace()
Globals.root = '.'