hotfix(response_processor): remove debug log

This commit is contained in:
Sharath 2025-06-05 18:03:52 +05:30 committed by GitHub
parent 524e1beb67
commit 25fcdfc058
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1278,7 +1278,7 @@ class ResponseProcessor:
"arguments": params # The extracted parameters "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 return tool_call, parsing_details # Return both dicts
except Exception as e: except Exception as e:
@ -1860,4 +1860,4 @@ class ResponseProcessor:
saved_message_obj = await self.add_message( saved_message_obj = await self.add_message(
thread_id=thread_id, type="status", content=content, is_llm_message=False, metadata=metadata thread_id=thread_id, type="status", content=content, is_llm_message=False, metadata=metadata
) )
return saved_message_obj return saved_message_obj