From b862e464f82ade444c96282bf2c97ed6c578df7c Mon Sep 17 00:00:00 2001 From: Alex Fazio <34505954+alexfazio@users.noreply.github.com> Date: Wed, 1 May 2024 17:53:49 +0200 Subject: [PATCH] docs fix to xml tool import statement (#546) * docs fix to xml tool import statement * Update XMLSearchTool.md --- docs/tools/XMLSearchTool.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/XMLSearchTool.md b/docs/tools/XMLSearchTool.md index 74c889227..291496937 100644 --- a/docs/tools/XMLSearchTool.md +++ b/docs/tools/XMLSearchTool.md @@ -17,7 +17,7 @@ pip install 'crewai[tools]' Here are two examples demonstrating how to use the XMLSearchTool. The first example shows searching within a specific XML file, while the second example illustrates initiating a search without predefining an XML path, providing flexibility in search scope. ```python -from crewai_tools.tools.xml_search_tool import XMLSearchTool +from crewai_tools import XMLSearchTool # Allow agents to search within any XML file's content as it learns about their paths during execution tool = XMLSearchTool()