From e4a04331cbfc4a9c139587b20a382364b709daed Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Wed, 8 Oct 2025 21:17:45 -0400 Subject: [PATCH] add some more debugging --- llm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llm.py b/llm.py index 7d98dc2..d255a57 100644 --- a/llm.py +++ b/llm.py @@ -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")