Sent when a background response has been interrupted.

interface ResponseIncompleteWebhookEvent {
    created_at: number;
    data: OpenAIClient.Webhooks.ResponseIncompleteWebhookEvent.Data;
    id: string;
    object?: "event";
    type: "response.incomplete";
}

Properties

created_at: number

The Unix timestamp (in seconds) of when the model response was interrupted.

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "response.incomplete"

The type of the event. Always response.incomplete.