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

interface ResponseReasoningDeltaEvent {
    content_index: number;
    delta: unknown;
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.reasoning.delta";
}

Properties

content_index: number

The index of the reasoning content part within the output item.

delta: unknown

The partial update to the reasoning content.

item_id: string

The unique identifier of the item for which reasoning 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.

type: "response.reasoning.delta"

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