Skip to content

Commit c828d1b

Browse files
alecsolderAlec Solder
andauthored
[Bugfix] gpt-oss container tool output bug (#25485)
Signed-off-by: Alec Solder <alecs@fb.com> Co-authored-by: Alec Solder <alecs@fb.com>
1 parent 8b8a8af commit c828d1b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vllm/entrypoints/harmony_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ def parse_output_message(message: Message) -> list[ResponseOutputItem]:
317317
)
318318
output_items.append(response_item)
319319
elif recipient is not None and (recipient.startswith("python")
320-
or recipient.startswith("browser")):
320+
or recipient.startswith("browser")
321+
or recipient.startswith("container")):
321322
for content in message.content:
322323
reasoning_item = ResponseReasoningItem(
323324
id=f"rs_{random_uuid()}",

0 commit comments

Comments
 (0)