From fc03e2d6eee3ba70015251f9bf54c808b5ea83e0 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 5 May 2026 13:13:07 -0700 Subject: [PATCH] Fix: pass allow parallel tool calls in LLM client --- src/paperless_ai/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/paperless_ai/client.py b/src/paperless_ai/client.py index 8a653baef..ce1874461 100644 --- a/src/paperless_ai/client.py +++ b/src/paperless_ai/client.py @@ -73,6 +73,7 @@ class AIClient: tools=[tool], user_msg=user_msg, chat_history=[], + allow_parallel_tool_calls=True, ) tool_calls = self.llm.get_tool_calls_from_response( result,