From 9eeebd3c65e9c2d49feb46fc51264d553b2fb99f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Mon, 23 Sep 2024 19:59:23 -0300 Subject: [PATCH] removing logs --- src/crewai/tools/tool_usage.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/crewai/tools/tool_usage.py b/src/crewai/tools/tool_usage.py index 20bf97996..e0eb0e29c 100644 --- a/src/crewai/tools/tool_usage.py +++ b/src/crewai/tools/tool_usage.py @@ -85,7 +85,6 @@ class ToolUsage: def use( self, calling: Union[ToolCalling, InstructorToolCalling], tool_string: str ) -> str: - print("calling", calling) if isinstance(calling, ToolUsageErrorException): error = calling.message if self.agent.verbose: @@ -332,7 +331,6 @@ class ToolUsage: arguments=tool_object["arguments"], log=tool_string, # type: ignore ) - print("calling", calling) if isinstance(calling, ConverterError): raise calling