From 9f921cba868415a06e132f117420f68c79686e9c Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Thu, 17 Apr 2025 07:47:21 -0700 Subject: [PATCH] fix: docs import path for json search tool - updated import path to crewai-tools - removed old comment --- docs/tools/jsonsearchtool.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/jsonsearchtool.mdx b/docs/tools/jsonsearchtool.mdx index d7f8b853e..f7391b92a 100644 --- a/docs/tools/jsonsearchtool.mdx +++ b/docs/tools/jsonsearchtool.mdx @@ -30,7 +30,7 @@ pip install 'crewai[tools]' Here are updated examples on how to utilize the JSONSearchTool effectively for searching within JSON files. These examples take into account the current implementation and usage patterns identified in the codebase. ```python Code -from crewai.json_tools import JSONSearchTool # Updated import path +from crewai_tools import JSONSearchTool # General JSON content search # This approach is suitable when the JSON path is either known beforehand or can be dynamically identified.