From 00e584312ccbe95ef66618a1233f48ba9603bb6a Mon Sep 17 00:00:00 2001 From: SuperMalinge <64928345+SuperMalinge@users.noreply.github.com> Date: Wed, 3 Jan 2024 00:52:12 +0100 Subject: [PATCH] Update output_parser.py (#42) --- crewai/agents/output_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crewai/agents/output_parser.py b/crewai/agents/output_parser.py index 2b7ab8269..0825d6f0c 100644 --- a/crewai/agents/output_parser.py +++ b/crewai/agents/output_parser.py @@ -71,7 +71,7 @@ class CrewAgentOutputParser(ReActSingleInputOutputParser): } if usage == last_tool_usage: raise OutputParserException( - f"""\nI just used the {action} tool with input {tool_input}. So I already knwo the result of that.""" + f"""\nI just used the {action} tool with input {tool_input}. So I already know the result of that.""" ) result = self.cache.read(action, tool_input)