Add support for universal LLMContext to Ollama LLM service

This commit is contained in:
Paul Kompfner
2025-09-02 15:28:02 -04:00
parent 5bc0e49baa
commit d9ea02595b

View File

@@ -43,12 +43,3 @@ class OLLamaLLMService(OpenAILLMService):
"""
logger.debug(f"Creating Ollama client with api {base_url}")
return super().create_client(base_url=base_url, **kwargs)
@property
def supports_universal_context(self) -> bool:
"""Check if this service supports universal LLMContext.
Returns:
False, as OLLamaLLMService does not yet support universal LLMContext.
"""
return False