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