Add support for universal LLMContext to Groq LLM service

This commit is contained in:
Paul Kompfner
2025-09-02 14:49:14 -04:00
parent b4e1051066
commit 34f823bcac

View File

@@ -49,12 +49,3 @@ class GroqLLMService(OpenAILLMService):
"""
logger.debug(f"Creating Groq 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 GroqLLMService does not yet support universal LLMContext.
"""
return False