Fix server type-o

This commit is contained in:
James Ketr 2025-04-18 16:53:42 -07:00
parent f48266bfdf
commit 94d1581a7a

View File

@ -311,7 +311,7 @@ async def handle_tool_calls(message):
tool = tool_call["function"]["name"]
# Yield status update before processing each tool
yield {"status": "processing", "message": f"Processing tool {i+1}/{len(message['tool_call'])}: {tool}..."}
yield {"status": "processing", "message": f"Processing tool {i+1}/{len(message['tool_calls'])}: {tool}..."}
# Process the tool based on its type
match tool: