This commit is contained in:
Timothy Jaeryang Baek 2025-03-28 00:07:00 -07:00
parent 5f9679253e
commit 2070d1096b

View File

@ -1857,6 +1857,9 @@ async def process_chat_response(
except Exception as e:
tool_result = str(e)
if isinstance(tool_result, dict):
tool_result = json.dumps(tool_result)
results.append(
{
"tool_call_id": tool_call_id,