From 4942e25707a94048cb87bb586308d925d0058e1f Mon Sep 17 00:00:00 2001 From: Krish Dholakia Date: Sun, 18 May 2025 20:43:01 -0700 Subject: [PATCH] fix(vertex_llm_base.py): remove quota_project_id parameter from credential refresh request (#10915) Fixes https://github.com/BerriAI/litellm/issues/9863 --- litellm/llms/vertex_ai/vertex_llm_base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/llms/vertex_ai/vertex_llm_base.py b/litellm/llms/vertex_ai/vertex_llm_base.py index 8f3037c791..b4b04df0a9 100644 --- a/litellm/llms/vertex_ai/vertex_llm_base.py +++ b/litellm/llms/vertex_ai/vertex_llm_base.py @@ -93,7 +93,6 @@ class VertexBase: project_id = getattr(creds, "project_id", None) else: creds, creds_project_id = google_auth.default( - quota_project_id=project_id, scopes=["https://www.googleapis.com/auth/cloud-platform"], ) if project_id is None: