Unverified Commit c828d1bf authored by Alec S's avatar Alec S Committed by GitHub
Browse files

[Bugfix] gpt-oss container tool output bug (#25485)


Signed-off-by: default avatarAlec Solder <alecs@fb.com>
Co-authored-by: default avatarAlec Solder <alecs@fb.com>
parent 8b8a8afc
......@@ -317,7 +317,8 @@ def parse_output_message(message: Message) -> list[ResponseOutputItem]:
)
output_items.append(response_item)
elif recipient is not None and (recipient.startswith("python")
or recipient.startswith("browser")):
or recipient.startswith("browser")
or recipient.startswith("container")):
for content in message.content:
reasoning_item = ResponseReasoningItem(
id=f"rs_{random_uuid()}",
......
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