Emitted when there is a delta (partial update) to the reasoning summary content.

interface ResponseReasoningSummaryDeltaEvent {
    delta: unknown;
    item_id: string;
    output_index: number;
    sequence_number: number;
    summary_index: number;
    type: "response.reasoning_summary.delta";
}

Properties

delta: unknown

The partial update to the reasoning summary content.

item_id: string

The unique identifier of the item for which the reasoning summary is being updated.

output_index: number

The index of the output item in the response's output array.

sequence_number: number

The sequence number of this event.

summary_index: number

The index of the summary part within the output item.

type: "response.reasoning_summary.delta"

The type of the event. Always 'response.reasoning_summary.delta'.