Add support for universal LLMContext to Together.ai LLM service

This commit is contained in:
Paul Kompfner
2025-09-02 15:56:44 -04:00
parent 6838bc1e51
commit 7cb372ebb9

View File

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