fix: OLLamaLLMService pass base_url as kwarg

This commit is contained in:
Mark Backman
2025-07-21 17:51:11 -04:00
parent d981ce6e56
commit 698d60f3ae
2 changed files with 4 additions and 1 deletions

View File

@@ -42,4 +42,4 @@ class OLLamaLLMService(OpenAILLMService):
An OpenAI-compatible client configured for Ollama.
"""
logger.debug(f"Creating Ollama client with api {base_url}")
return super().create_client(base_url, **kwargs)
return super().create_client(base_url=base_url, **kwargs)