From 24474ce2a06d918ce13e4bc0ef11396ffba1f7db Mon Sep 17 00:00:00 2001 From: coyaSONG <66289470+coyaSONG@users.noreply.github.com> Date: Wed, 15 Jul 2026 00:47:59 +0900 Subject: [PATCH] docs(vertex): pass model to from_genai --- docs/integrations/vertex.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/vertex.md b/docs/integrations/vertex.md index 7934082cb..6dd0ba828 100644 --- a/docs/integrations/vertex.md +++ b/docs/integrations/vertex.md @@ -267,8 +267,8 @@ client = from_genai( vertexai=True, project="your-project", location="us-central1", - model="gemini-3-flash" - ) + ), + model="gemini-3-flash", ) ```