Commits
Click on a commit to change the comparison rangefix(core): pass tool_call_id to on_tool_start callback
When invoking a tool with a ToolCall, the tool_call_id was extracted
but not forwarded to callback handlers in on_tool_start. This made it
impossible for callback handlers to correlate tool executions with
the original LLM tool calls.
This fix adds tool_call_id parameter to both sync run() and async
arun() methods' on_tool_start calls.
Fixes #341684 days ago
by nathannewyen Merge branch 'master' into fix/34168-tool-call-id-callback Merge branch 'fix/34168-tool-call-id-callback' of github.com:nathannewyen/langchain into pr/nathannewyen/34235