docs: fix incorrect model naming in Google Vertex AI documentation (#3189)
Some checks failed
Notify Downstream / notify-downstream (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled

- Change model format from "gemini/gemini-1.5-pro-latest" to "gemini-1.5-pro-latest"
  in Vertex AI section examples
- Update both English and Portuguese documentation files
- Fixes incorrect provider prefix usage for Vertex AI models
- Ensures consistency with Vertex AI provider requirements

Files changed:
- docs/en/concepts/llms.mdx (line 272)
- docs/pt-BR/concepts/llms.mdx (line 270)

Co-authored-by: Tony Kipkemboi <iamtonykipkemboi@gmail.com>
This commit is contained in:
Manuka Yasas
2025-07-24 02:28:57 +05:30
committed by GitHub
parent b1fdcdfa6e
commit 579153b070
2 changed files with 2 additions and 2 deletions

View File

@@ -270,7 +270,7 @@ In this section, you'll find detailed examples that help you select, configure,
from crewai import LLM from crewai import LLM
llm = LLM( llm = LLM(
model="gemini/gemini-1.5-pro-latest", model="gemini-1.5-pro-latest", # or vertex_ai/gemini-1.5-pro-latest
temperature=0.7, temperature=0.7,
vertex_credentials=vertex_credentials_json vertex_credentials=vertex_credentials_json
) )

View File

@@ -268,7 +268,7 @@ Nesta seção, você encontrará exemplos detalhados que ajudam a selecionar, co
from crewai import LLM from crewai import LLM
llm = LLM( llm = LLM(
model="gemini/gemini-1.5-pro-latest", model="gemini-1.5-pro-latest", # or vertex_ai/gemini-1.5-pro-latest
temperature=0.7, temperature=0.7,
vertex_credentials=vertex_credentials_json vertex_credentials=vertex_credentials_json
) )