From d39e6bf921558021e9fc5956508e3b0a4eb2974c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Fri, 15 May 2026 14:51:31 -0700 Subject: [PATCH] Add changelog for #4501 --- changelog/4501.fixed.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/4501.fixed.md diff --git a/changelog/4501.fixed.md b/changelog/4501.fixed.md new file mode 100644 index 000000000..9da88a9e1 --- /dev/null +++ b/changelog/4501.fixed.md @@ -0,0 +1 @@ +- Fixed bot hangs when `filter_incomplete_user_turns` was enabled and the LLM responded by calling a tool. The user turn never finalized, so the assistant aggregator gated the tool-result context push and the LLM continuation never ran. Tool calls now finalize the turn the moment they start, before the function dispatches.