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
425b04b8
Unverified
Commit
425b04b8
authored
Sep 08, 2025
by
Chauncey
Committed by
GitHub
Sep 08, 2025
Browse files
[gpt-oss][Responses API] Fix the function call id format (#24409)
Signed-off-by:
chaunceyjiang
<
chaunceyjiang@gmail.com
>
parent
60f0843e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/entrypoints/harmony_utils.py
vllm/entrypoints/harmony_utils.py
+1
-1
No files found.
vllm/entrypoints/harmony_utils.py
View file @
425b04b8
...
@@ -273,7 +273,7 @@ def parse_output_message(message: Message) -> list[ResponseOutputItem]:
...
@@ -273,7 +273,7 @@ def parse_output_message(message: Message) -> list[ResponseOutputItem]:
call_id
=
f
"call_
{
random_id
}
"
,
call_id
=
f
"call_
{
random_id
}
"
,
type
=
"function_call"
,
type
=
"function_call"
,
name
=
function_name
,
name
=
function_name
,
id
=
f
"f
t
_
{
random_id
}
"
,
id
=
f
"f
c
_
{
random_id
}
"
,
)
)
output_items
.
append
(
response_item
)
output_items
.
append
(
response_item
)
elif
recipient
is
not
None
and
(
recipient
.
startswith
(
"python"
)
elif
recipient
is
not
None
and
(
recipient
.
startswith
(
"python"
)
...
...
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