From 0cfeeafe5d82664cec547cba8cc94e34e3bef9fa Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 20 Mar 2026 09:08:58 -0600 Subject: [PATCH] Cleanup --- frigate/api/chat.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frigate/api/chat.py b/frigate/api/chat.py index 5fb79b8438..900fa86cc6 100644 --- a/frigate/api/chat.py +++ b/frigate/api/chat.py @@ -840,7 +840,11 @@ Always be accurate with time calculations based on the current date provided.{ca msg.get("content"), pending ) ) - executed_calls, tool_results, extra_msgs = await _execute_pending_tools( + ( + executed_calls, + tool_results, + extra_msgs, + ) = await _execute_pending_tools( pending, request, allowed_cameras ) stream_tool_calls.extend(executed_calls)