From 7cb372ebb9c5862bc6937957673b6a078320f92c Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 15:56:44 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Together.ai LLM service --- src/pipecat/services/together/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/together/llm.py b/src/pipecat/services/together/llm.py index 2a004f1c9..7a22c885a 100644 --- a/src/pipecat/services/together/llm.py +++ b/src/pipecat/services/together/llm.py @@ -49,12 +49,3 @@ class TogetherLLMService(OpenAILLMService): """ logger.debug(f"Creating Together.ai 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 TogetherLLMService does not yet support universal LLMContext. - """ - return False