An event that is emitted when a response fails.

interface ResponseFailedEvent {
    response: OpenAIClient.Responses.Response;
    type: "response.failed";
}

Properties

Properties

The response that failed.

type: "response.failed"

The type of the event. Always response.failed.