Changelogs for the new feature and the fix.

This commit is contained in:
filipi87
2026-04-09 09:04:19 -03:00
parent a544f885a3
commit 7b45a56119
2 changed files with 2 additions and 0 deletions

1
changelog/4230.added.md Normal file
View File

@@ -0,0 +1 @@
- Added support for streaming intermediate results from async function calls. Call `result_callback` multiple times with `properties=FunctionCallResultProperties(is_final=False)` to push incremental updates, then call it once more (with `is_final=True`, the default) to deliver the final result. Only valid for functions registered with `cancel_on_interruption=False`.

1
changelog/4230.fixed.md Normal file
View File

@@ -0,0 +1 @@
- Fixed duplicate LLM replies that could occur when multiple async function call results arrived while an LLM request was already queued.