From 91a3f63e28aeb3fd01a3dac26bbd3d78d4ecf185 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 15:32:24 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Qwen LLM service --- src/pipecat/services/qwen/llm.py | 9 --------- 1 file changed, 9 deletions(-) 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