From d9ea02595b16af6060f8f31f8a44fedc5f81c1bc Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 15:28:02 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Ollama LLM service --- src/pipecat/services/ollama/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/ollama/llm.py b/src/pipecat/services/ollama/llm.py index aa6f58b59..2284a5070 100644 --- a/src/pipecat/services/ollama/llm.py +++ b/src/pipecat/services/ollama/llm.py @@ -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