From 579153b07045de2318a04c7a411c824ab605096d Mon Sep 17 00:00:00 2001 From: Manuka Yasas <63389716+manuka99@users.noreply.github.com> Date: Thu, 24 Jul 2025 02:28:57 +0530 Subject: [PATCH] docs: fix incorrect model naming in Google Vertex AI documentation (#3189) - 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 --- docs/en/concepts/llms.mdx | 2 +- docs/pt-BR/concepts/llms.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/concepts/llms.mdx b/docs/en/concepts/llms.mdx index 2d6a452f2..6b6e5c566 100644 --- a/docs/en/concepts/llms.mdx +++ b/docs/en/concepts/llms.mdx @@ -270,7 +270,7 @@ In this section, you'll find detailed examples that help you select, configure, from crewai import 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, vertex_credentials=vertex_credentials_json ) diff --git a/docs/pt-BR/concepts/llms.mdx b/docs/pt-BR/concepts/llms.mdx index b32c0b712..284a1d92c 100644 --- a/docs/pt-BR/concepts/llms.mdx +++ b/docs/pt-BR/concepts/llms.mdx @@ -268,7 +268,7 @@ Nesta seção, você encontrará exemplos detalhados que ajudam a selecionar, co from crewai import 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, vertex_credentials=vertex_credentials_json )