Emitted when a reasoning summary part is completed.

interface ResponseReasoningSummaryPartDoneEvent {
    item_id: string;
    output_index: number;
    part: OpenAIClient.Responses.ResponseReasoningSummaryPartDoneEvent.Part;
    summary_index: number;
    type: "response.reasoning_summary_part.done";
}

Properties

item_id: string

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

output_index: number

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

The completed summary part.

summary_index: number

The index of the summary part within the reasoning summary.

type: "response.reasoning_summary_part.done"

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