fix: OLLamaLLMService pass base_url as kwarg
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user