fix: resolve CI test failures (config access, mocks, imports)
Some checks failed
CI / lint (push) Has been cancelled
CI / type-check (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-04 11:49:08 +00:00
parent 13403823ba
commit b1b65a80af

View File

@@ -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