chaaim123 commited on
Commit
9192d2f
·
verified ·
1 Parent(s): da24adc

Create globals.py

Browse files
Files changed (1) hide show
  1. 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")