Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
aa7e8360
Unverified
Commit
aa7e8360
authored
Dec 18, 2025
by
Chauncey
Committed by
GitHub
Dec 18, 2025
Browse files
[Bugfix] Fix Unicode issues in GLM-4 tool calling (#30920)
Signed-off-by:
chaunceyjiang
<
chaunceyjiang@gmail.com
>
parent
be2ad5f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/tool_parsers/glm4_moe_tool_parser.py
vllm/tool_parsers/glm4_moe_tool_parser.py
+2
-1
No files found.
vllm/tool_parsers/glm4_moe_tool_parser.py
View file @
aa7e8360
...
@@ -114,7 +114,8 @@ class Glm4MoeModelToolParser(ToolParser):
...
@@ -114,7 +114,8 @@ class Glm4MoeModelToolParser(ToolParser):
ToolCall
(
ToolCall
(
type
=
"function"
,
type
=
"function"
,
function
=
FunctionCall
(
function
=
FunctionCall
(
name
=
tc_name
,
arguments
=
json
.
dumps
(
arg_dct
)
name
=
tc_name
,
arguments
=
json
.
dumps
(
arg_dct
,
ensure_ascii
=
False
),
),
),
)
)
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment