From c6f60efd5e0e2b88475821316896e658cb451c5d Mon Sep 17 00:00:00 2001 From: Mosta <59450781+cmosta0@users.noreply.github.com> Date: Mon, 22 Apr 2024 18:06:58 -0600 Subject: [PATCH] Update PGSearchTool.md typo on code snippet --- docs/tools/PGSearchTool.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/PGSearchTool.md b/docs/tools/PGSearchTool.md index e014e0461..cb01cc213 100644 --- a/docs/tools/PGSearchTool.md +++ b/docs/tools/PGSearchTool.md @@ -19,7 +19,7 @@ pip install 'crewai[tools]' Below is a proposed example showcasing how to use the PGSearchTool for conducting a semantic search on a table within a PostgreSQL database: ```python -rom crewai_tools import PGSearchTool +from crewai_tools import PGSearchTool # Initialize the tool with the database URI and the target table name tool = PGSearchTool(db_uri='postgresql://user:password@localhost:5432/mydatabase', table_name='employees') @@ -57,4 +57,4 @@ tool = PGSearchTool( ), ) ) -``` \ No newline at end of file +```