From d8882bc381399ade2b755f3d627205e304f41c1b Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 14:38:44 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Google Vertex AI LLM service --- src/pipecat/services/google/llm_vertex.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/google/llm_vertex.py b/src/pipecat/services/google/llm_vertex.py index bdbf2dda1..22b6258a5 100644 --- a/src/pipecat/services/google/llm_vertex.py +++ b/src/pipecat/services/google/llm_vertex.py @@ -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