From de7bbd059dfc72c8e41f561bfca5631d89b6fda4 Mon Sep 17 00:00:00 2001 From: Abi Ullattil Date: Tue, 22 Apr 2025 15:42:02 -0700 Subject: [PATCH] Update vertex.md This change fixes the name of the tool in the documentation. --- docs/my-website/docs/providers/vertex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/my-website/docs/providers/vertex.md b/docs/my-website/docs/providers/vertex.md index 762bd5f332..0d9c38e93c 100644 --- a/docs/my-website/docs/providers/vertex.md +++ b/docs/my-website/docs/providers/vertex.md @@ -391,7 +391,7 @@ client = OpenAI( response = client.chat.completions.create( model="gemini-pro", messages=[{"role": "user", "content": "Who won the world cup?"}], - tools=[{"googleSearchRetrieval": {}}], + tools=[{"googleSearch": {}}], ) print(response)