From 6e8b0f2e42b18640decedf6a4bfa28ae79f295e6 Mon Sep 17 00:00:00 2001 From: Ariel Frischer Date: Wed, 12 Feb 2025 13:50:37 -0800 Subject: [PATCH] chore(output.py): remove debug print statements for cleaner code and improved readability --- ra_aid/console/output.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ra_aid/console/output.py b/ra_aid/console/output.py index 7e62e1b..ee6fe08 100644 --- a/ra_aid/console/output.py +++ b/ra_aid/console/output.py @@ -44,8 +44,6 @@ def print_agent_output(chunk: Dict[str, Any]) -> None: ) ) tool_name = getattr(msg, "name", None) - cpm(f"type(msg): {type(msg)}") - cpm(f"msg: {msg}") raise ToolExecutionError(err_msg, tool_name=tool_name, base_message=msg)