An event that is emitted when a response finishes as incomplete.

interface ResponseIncompleteEvent {
    response: OpenAIClient.Responses.Response;
    type: "response.incomplete";
}

Properties

Properties

The response that was incomplete.

type: "response.incomplete"

The type of the event. Always response.incomplete.