Added flags, and implemented skip-reprompt

This commit is contained in:
Eesa Hamza
2023-04-13 12:57:57 +03:00
parent c8b8673286
commit 428caa9bef
2 changed files with 13 additions and 2 deletions

View File

@@ -37,6 +37,7 @@ class Config(metaclass=Singleton):
self.debug_mode = False
self.continuous_mode = False
self.speak_mode = False
self.skip_reprompt = False
self.fast_llm_model = os.getenv("FAST_LLM_MODEL", "gpt-3.5-turbo")
self.smart_llm_model = os.getenv("SMART_LLM_MODEL", "gpt-4")