Added group_parallel_tools parameter to LLMService.

This commit is contained in:
filipi87
2026-04-01 13:51:30 -03:00
parent c066a913fe
commit 72bbad51b7
2 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1 @@
- Added `group_parallel_tools` parameter to `LLMService` (default `True`). When `True`, all function calls from the same LLM response batch share a group ID and the LLM is triggered exactly once after the last call completes. Set to `False` to trigger inference independently for each function call result as it arrives.