Add support for universal LLMContext to Qwen LLM service

This commit is contained in:
Paul Kompfner
2025-09-02 15:32:24 -04:00
parent b24eb76559
commit 91a3f63e28

View File

@@ -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