add some more debugging

This commit is contained in:
2025-10-08 21:17:45 -04:00
parent 166ffb4c09
commit e4a04331cb

3
llm.py
View File

@@ -18,7 +18,8 @@ class LLMClient:
)
self.PROVIDER = "ollama"
logging.info("Using Ollama as LLM backend")
except:
except Exception as e:
print(e)
self.openai_client = OpenAI()
self.PROVIDER = "openai"
logging.info("Using OpenAI as LLM backend")