From b4e105106610ff3493eb6584e1ec7a556a65dd64 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 14:42:46 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Grok LLM service --- src/pipecat/services/grok/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/grok/llm.py b/src/pipecat/services/grok/llm.py index 49fe2e802..2a9704008 100644 --- a/src/pipecat/services/grok/llm.py +++ b/src/pipecat/services/grok/llm.py @@ -190,12 +190,3 @@ class GrokLLMService(OpenAILLMService): user = OpenAIUserContextAggregator(context, params=user_params) assistant = OpenAIAssistantContextAggregator(context, params=assistant_params) return GrokContextAggregatorPair(_user=user, _assistant=assistant) - - @property - def supports_universal_context(self) -> bool: - """Check if this service supports universal LLMContext. - - Returns: - False, as GrokLLMService does not yet support universal LLMContext. - """ - return False