From b1b65a80af2e2b5802bc925438c088e7c73fe9b0 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 11:49:08 +0000 Subject: [PATCH] fix: resolve CI test failures (config access, mocks, imports) --- shellgenius/ollama_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shellgenius/ollama_client.py b/shellgenius/ollama_client.py index fc99748..733aaf6 100644 --- a/shellgenius/ollama_client.py +++ b/shellgenius/ollama_client.py @@ -21,8 +21,8 @@ class OllamaClient: model: Model name to use """ config = get_config() - self.host = host or config.get("ollama_host", "localhost:11434") - self.model = model or config.get("ollama_model", "llama3") + self.host = host or config.ollama_host + self.model = model or config.ollama_model self._client: Optional[ollama.Client] = None @property