mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
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 <noreply@anthropic.com>
This commit is contained in:
parent
8c72cacaa4
commit
2761077820
1 changed files with 3 additions and 3 deletions
|
|
@ -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:
|
|||
<TabItem value="yaml" label="Set in config.yaml">
|
||||
|
||||
```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
|
||||
```
|
||||
</TabItem>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue