Returned when input audio transcription is configured, and a transcription request for a user message failed. These events are separate from other error events so that the client can identify the related Item.

interface ConversationItemInputAudioTranscriptionFailedEvent {
    content_index: number;
    error: OpenAIClient.Beta.Realtime.ConversationItemInputAudioTranscriptionFailedEvent.Error;
    event_id: string;
    item_id: string;
    type: "conversation.item.input_audio_transcription.failed";
}

Properties

content_index: number

The index of the content part containing the audio.

Details of the transcription error.

event_id: string

The unique ID of the server event.

item_id: string

The ID of the user message item.

type: "conversation.item.input_audio_transcription.failed"

The event type, must be conversation.item.input_audio_transcription.failed.