We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53bacd6 commit 26bda17Copy full SHA for 26bda17
src/lmstudio/json_api.py
@@ -1392,7 +1392,7 @@ def request_tool_call(
1392
def _call_requested_tool() -> ToolCallResultData:
1393
call_result = implementation(**kwds)
1394
return ToolCallResultData(
1395
- content=json.dumps(call_result), tool_call_id=tool_call_id
+ content=json.dumps(call_result, ensure_ascii=False), tool_call_id=tool_call_id
1396
)
1397
1398
return _call_requested_tool
0 commit comments