From 2761077820a9974db83bfb03d71c4d66720c2c20 Mon Sep 17 00:00:00 2001 From: Will Chen Date: Mon, 19 Jan 2026 19:15:17 -0800 Subject: [PATCH] docs: fix vertex_region to vertex_location in Vertex AI pass-through docs (#19380) The documentation incorrectly used `vertex_region` as the parameter name, but the actual parameter expected by LiteLLM is `vertex_location` as defined in VertexPassThroughCredentials and other type definitions. Co-authored-by: Claude --- docs/my-website/docs/pass_through/vertex_ai.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/my-website/docs/pass_through/vertex_ai.md b/docs/my-website/docs/pass_through/vertex_ai.md index 2efef60070d..adbd06187d5 100644 --- a/docs/my-website/docs/pass_through/vertex_ai.md +++ b/docs/my-website/docs/pass_through/vertex_ai.md @@ -45,7 +45,7 @@ model_list: litellm_params: model: vertex_ai/gemini-1.0-pro vertex_project: adroit-crow-413218 - vertex_region: us-central1 + vertex_location: us-central1 vertex_credentials: /path/to/credentials.json use_in_pass_through: true # 👈 KEY CHANGE ``` @@ -57,9 +57,9 @@ model_list: ```yaml -default_vertex_config: +default_vertex_config: vertex_project: adroit-crow-413218 - vertex_region: us-central1 + vertex_location: us-central1 vertex_credentials: /path/to/credentials.json ```