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 +```