diff --git a/models/templates/MiroThinker-v1.jinja b/models/templates/MiroThinker-v1.jinja index 215d96fc78..eb2445cd3b 100644 --- a/models/templates/MiroThinker-v1.jinja +++ b/models/templates/MiroThinker-v1.jinja @@ -29,7 +29,7 @@ {%- endif %} {{- "### Tool name: " + function_name(tool) + "\n" }} {{- "Description: " + function_description(tool) + "\n" }} - {{- "Input JSON schema: " + (function_parameters(tool) | tojson(ensure_ascii=False)) + "\n" }} + {{- "Input JSON schema: " + (function_parameters(tool) | tojson) + "\n" }} {{- "\n" }} {%- endif %} {%- endmacro %} @@ -56,7 +56,7 @@ {{- "\n" }} {{- function.name }} {{- "\n\n" }} - {{- function.arguments | tojson(ensure_ascii=False) }} + {{- function.arguments | tojson }} {{- "\n" }} {%- endfor %} {{- "\n" }}