Add support for universal LLMContext to DeepSeek LLM service

This commit is contained in:
Paul Kompfner
2025-09-02 13:59:49 -04:00
parent 2dbd17da4d
commit 2b00d37e94

View File

@@ -82,12 +82,3 @@ class DeepSeekLLMService(OpenAILLMService):
params.update(self._settings["extra"])
return params
@property
def supports_universal_context(self) -> bool:
"""Check if this service supports universal LLMContext.
Returns:
False, as DeepSeekLLMService does not yet support universal LLMContext.
"""
return False