An event that is emitted when a response is created.

interface ResponseCreatedEvent {
    response: OpenAIClient.Responses.Response;
    type: "response.created";
}

Properties

Properties

The response that was created.

type: "response.created"

The type of the event. Always response.created.