Release Notes
Patch Changes
#11045
05936abThanks @jackjin1997! - fix(openai): omit empty id and content on reasoning items in Responses API inputReasoning blocks reassembled from streaming chunks (e.g. via
streamEvents) never carry an id, since OpenAI's streaming protocol only includes it in non-streaming responses. When such a message was replayed as Responses API input on the next turn, the reasoning item was emitted withid: "", which OpenAI rejects with400 Invalid 'input[n].id': ''. Theidfield is now omitted when absent.A second error surfaced immediately after that fix: the same converter set a populated
contentarray on the reasoning input item, which the Responses API also rejects (400 Invalid 'input[n].content': array too long. Expected an array with maximum length 0). Reasoning input items only carrysummary, socontentis no longer forwarded. Thanks to @csrujanreddy for catching the second issue and verifying both fixes against the live API.#11065
798cb70Thanks @rxits! - fix(openai): route standard url file blocks to native input_file in Responses API#11090
80c790bThanks @nikhilpakhloo! - fix(openai): stream built-in tool progress events