Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-08-22 12:18:42 +00:00
parent 9e0770e7c2
commit 3fa270bfdd
@@ -384,7 +384,7 @@ class ToolNode(RunnableCallable):
*,
store: Optional[BaseStore],
) -> Any:
tool_calls, input_type = self._parse_input(input, store)
tool_calls, input_type = self._parse_input(input, store, config)
outputs = await asyncio.gather(
*(self._arun_one(call, input_type, config) for call in tool_calls)
)
@@ -1270,3 +1270,4 @@ def _get_runtime_arg(tool: BaseTool) -> Optional[str]: