From ec138b97d9bc1748ae6b256364041db62d17e05b Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 15:19:32 -0400 Subject: [PATCH] Add support for universal `LLMContext` to OpenRouter LLM service --- src/pipecat/services/openrouter/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/openrouter/llm.py b/src/pipecat/services/openrouter/llm.py index 3ba1ae6f6..97a9d336a 100644 --- a/src/pipecat/services/openrouter/llm.py +++ b/src/pipecat/services/openrouter/llm.py @@ -61,12 +61,3 @@ class OpenRouterLLMService(OpenAILLMService): """ logger.debug(f"Creating OpenRouter client with api {base_url}") return super().create_client(api_key, base_url, **kwargs) - - @property - def supports_universal_context(self) -> bool: - """Check if this service supports universal LLMContext. - - Returns: - False, as OpenRouterLLMService does not yet support universal LLMContext. - """ - return False