From 25fcdfc058735cb0e10e74c3f9d57fd2daa3695c Mon Sep 17 00:00:00 2001 From: Sharath <29162020+tnfssc@users.noreply.github.com> Date: Thu, 5 Jun 2025 18:03:52 +0530 Subject: [PATCH] hotfix(response_processor): remove debug log --- backend/agentpress/response_processor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/agentpress/response_processor.py b/backend/agentpress/response_processor.py index 0f82efed..3076f7a6 100644 --- a/backend/agentpress/response_processor.py +++ b/backend/agentpress/response_processor.py @@ -1278,7 +1278,7 @@ class ResponseProcessor: "arguments": params # The extracted parameters } - logger.debug(f"Parsed old format tool call: {tool_call["function_name"]}") + # logger.debug(f"Parsed old format tool call: {tool_call["function_name"]}") return tool_call, parsing_details # Return both dicts except Exception as e: @@ -1860,4 +1860,4 @@ class ResponseProcessor: saved_message_obj = await self.add_message( thread_id=thread_id, type="status", content=content, is_llm_message=False, metadata=metadata ) - return saved_message_obj \ No newline at end of file + return saved_message_obj