From 1c902ce3d17636b8bdc1e126d45bf9ef68ff33f7 Mon Sep 17 00:00:00 2001 From: Michael Hunger Date: Mon, 12 Feb 2024 06:25:19 +0100 Subject: [PATCH] tools:docs: update google_search.ipynb - change tool name (#17354) according to https://youtu.be/rZus0JtRqXE?si=aFo1JTDnu5kSEiEN&t=678 by @efriis - **Description:** Seems the requirements for tool names have changed and spaces are no longer allowed. Changed the tool name from Google Search to google_search in the notebook - **Issue:** n/a - **Dependencies:** none - **Twitter handle:** @mesirii --- docs/docs/integrations/tools/google_search.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/tools/google_search.ipynb b/docs/docs/integrations/tools/google_search.ipynb index c8bb72cbbfc4f..b1302db06f18d 100644 --- a/docs/docs/integrations/tools/google_search.ipynb +++ b/docs/docs/integrations/tools/google_search.ipynb @@ -40,7 +40,7 @@ "search = GoogleSearchAPIWrapper()\n", "\n", "tool = Tool(\n", - " name=\"Google Search\",\n", + " name=\"google_search\",\n", " description=\"Search Google for recent results.\",\n", " func=search.run,\n", ")"