Add support for universal LLMContext to Google Vertex AI LLM service

This commit is contained in:
Paul Kompfner
2025-09-02 14:38:44 -04:00
parent da18d0a562
commit d8882bc381

View File

@@ -139,12 +139,3 @@ class GoogleVertexLLMService(OpenAILLMService):
creds.refresh(Request()) # Ensure token is up-to-date, lifetime is 1 hour.
return creds.token
@property
def supports_universal_context(self) -> bool:
"""Check if this service supports universal LLMContext.
Returns:
False, as GoogleVertexLLMService does not yet support universal LLMContext.
"""
return False