fix(vertex_llm_base.py): remove quota_project_id parameter from credential refresh request (#10915)

Fixes https://github.com/BerriAI/litellm/issues/9863
This commit is contained in:
Krish Dholakia
2025-05-18 20:43:01 -07:00
committed by GitHub
parent 16b2158d25
commit 4942e25707
@@ -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: