This commit is contained in:
Chester Curme 2025-07-24 17:17:33 -04:00
parent 4899857042
commit 61129557c0

View File

@ -2883,7 +2883,7 @@ def _lc_tool_call_to_openai_tool_call(tool_call: ToolCall) -> dict:
"id": tool_call["id"],
"function": {
"name": tool_call["name"],
"arguments": json.dumps(tool_call["args"]),
"arguments": json.dumps(tool_call["args"], ensure_ascii=False),
},
}