Returned when an error occurs, which could be a client problem or a server problem. Most errors are recoverable and the session will stay open, we recommend to implementors to monitor and log error messages by default.

interface ErrorEvent {
    error: OpenAIClient.Beta.Realtime.ErrorEvent.Error;
    event_id: string;
    type: "error";
}

Properties

Properties

Details of the error.

event_id: string

The unique ID of the server event.

type: "error"

The event type, must be error.