Unverified Commit 425b04b8 authored by Chauncey's avatar Chauncey Committed by GitHub
Browse files

[gpt-oss][Responses API] Fix the function call id format (#24409)


Signed-off-by: default avatarchaunceyjiang <chaunceyjiang@gmail.com>
parent 60f0843e
......@@ -273,7 +273,7 @@ def parse_output_message(message: Message) -> list[ResponseOutputItem]:
call_id=f"call_{random_id}",
type="function_call",
name=function_name,
id=f"ft_{random_id}",
id=f"fc_{random_id}",
)
output_items.append(response_item)
elif recipient is not None and (recipient.startswith("python")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment