From d311f2218280d90bbbc265050e4029eefa288f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?jonathan=20=7C=20=E3=83=A8=E3=83=8A=E3=82=BF=E3=83=B3?= <34569231+LostOxygen@users.noreply.github.com> Date: Fri, 5 Jul 2024 17:42:50 +0200 Subject: [PATCH] Langchain: fixed a typo in the imports (#23864) Description: Fixed a typo during the imports for the GoogleDriveSearchTool Issue: It's only for the docs, but it bothered me so i decided to fix it quickly :D --- docs/docs/integrations/tools/google_drive.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/tools/google_drive.ipynb b/docs/docs/integrations/tools/google_drive.ipynb index d3d216a733b..bc28a0597ac 100644 --- a/docs/docs/integrations/tools/google_drive.ipynb +++ b/docs/docs/integrations/tools/google_drive.ipynb @@ -99,7 +99,7 @@ }, "outputs": [], "source": [ - "from langchain_googldrive.tools.google_drive.tool import GoogleDriveSearchTool\n", + "from langchain_googledrive.tools.google_drive.tool import GoogleDriveSearchTool\n", "from langchain_googledrive.utilities.google_drive import GoogleDriveAPIWrapper\n", "\n", "# By default, search only in the filename.\n",