Emitted when a reasoning summary text is completed.

interface ResponseReasoningSummaryTextDoneEvent {
    item_id: string;
    output_index: number;
    summary_index: number;
    text: string;
    type: "response.reasoning_summary_text.done";
}

Properties

item_id: string

The ID of the item this summary text is associated with.

output_index: number

The index of the output item this summary text is associated with.

summary_index: number

The index of the summary part within the reasoning summary.

text: string

The full text of the completed reasoning summary.

type: "response.reasoning_summary_text.done"

The type of the event. Always response.reasoning_summary_text.done.