diff --git a/src/pipecat/services/qwen/llm.py b/src/pipecat/services/qwen/llm.py index 1c842ded6..648cbd9e8 100644 --- a/src/pipecat/services/qwen/llm.py +++ b/src/pipecat/services/qwen/llm.py @@ -50,12 +50,3 @@ class QwenLLMService(OpenAILLMService): """ logger.debug(f"Creating Qwen client with base URL: {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 QwenLLMService does not yet support universal LLMContext. - """ - return False