Emitted when a new reasoning summary part is added.

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

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 summary part that was added.

summary_index: number

The index of the summary part within the reasoning summary.

type: "response.reasoning_summary_part.added"

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