From 25a5ebe68deb051fe8ef7d11382809839a3c7eaf Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 22 May 2026 12:25:36 +0000 Subject: [PATCH] fix(vertex_ai/realtime): call super().__init__() to initialize tool call state Co-authored-by: Yassin Kortam --- litellm/llms/vertex_ai/realtime/transformation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/llms/vertex_ai/realtime/transformation.py b/litellm/llms/vertex_ai/realtime/transformation.py index 0033b02499b..9bc6da05ed7 100644 --- a/litellm/llms/vertex_ai/realtime/transformation.py +++ b/litellm/llms/vertex_ai/realtime/transformation.py @@ -27,6 +27,7 @@ class VertexAIRealtimeConfig(GeminiRealtimeConfig): """ def __init__(self, access_token: str, project: str, location: str) -> None: + super().__init__() self._access_token = access_token self._project = project self._location = location