From 711ef0e0f071628fb883ce52466926b24126a2d3 Mon Sep 17 00:00:00 2001 From: Abe Gong Date: Mon, 11 Mar 2024 13:45:28 -0600 Subject: [PATCH] Fix typo in Tools.md (#300) --- docs/core-concepts/Tools.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core-concepts/Tools.md b/docs/core-concepts/Tools.md index 8e70d29c8..7060c5b0d 100644 --- a/docs/core-concepts/Tools.md +++ b/docs/core-concepts/Tools.md @@ -181,7 +181,7 @@ from unstructured.partition.html import partition_html # Annotate the function with the tool decorator from crewAI @tool("Integration with a given API") -def integtation_tool(argument: str) -> str: +def integration_tool(argument: str) -> str: """Integration with a given API""" # Code here return resutls # string to be sent back to the agent @@ -191,7 +191,7 @@ agent = Agent( role='Research Analyst', goal='Provide up-to-date market analysis', backstory='An expert analyst with a keen eye for market trends.', - tools=[integtation_tool] + tools=[integration_tool] ) ```