From 166ffb4c0951df45c4b3f99a7baadfcfeb0a8477 Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Wed, 8 Oct 2025 21:13:15 -0400 Subject: [PATCH] i only ship bugs --- llm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llm.py b/llm.py index c95a0a7..7d98dc2 100644 --- a/llm.py +++ b/llm.py @@ -29,13 +29,13 @@ class LLMClient: system_prompt: str, ): if self.PROVIDER == "ollama": - response = ollama_client.chat( + response = self.ollama_client.chat( model="gemma3:4b", prompt=prompt, ) output = response["response"] elif self.PROVIDER == "openai": - response = openai_client.chat.completions.create( + response = self.openai_client.chat.completions.create( model="gpt-4o-mini", messages=[ {