Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-08-22 12:41:04 +00:00
parent 2f96c5c021
commit a5b61361af
@@ -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)
)
@@ -1228,3 +1228,4 @@ def _get_runtime_arg(tool: BaseTool) -> Optional[str]: