Compare commits

...

1 Commits

Author SHA1 Message Date
Greyson LaLonde
9f921cba86 fix: docs import path for json search tool
- updated import path to crewai-tools
- removed old comment
2025-04-17 07:47:21 -07:00

View File

@@ -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. 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 ```python Code
from crewai.json_tools import JSONSearchTool # Updated import path from crewai_tools import JSONSearchTool
# General JSON content search # General JSON content search
# This approach is suitable when the JSON path is either known beforehand or can be dynamically identified. # This approach is suitable when the JSON path is either known beforehand or can be dynamically identified.