mirror of
https://github.com/crewAIInc/crewAI.git
synced 2025-12-16 04:18:35 +00:00
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 <iamtonykipkemboi@gmail.com>
This commit is contained in:
@@ -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
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user