Spaces:
Running
Running
Create globals.py
Browse files- globals.py +6 -0
globals.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import logging
|
2 |
+
from config.appConfig import AppConfig
|
3 |
+
|
4 |
+
# Initialize AppConfig (this will initialize the LLMManager with the default model)
|
5 |
+
app_config = AppConfig()
|
6 |
+
logging.info("Global app_config initialized")
|