Returned when the text value of an input audio transcription content part is updated.

interface ConversationItemInputAudioTranscriptionDeltaEvent {
    content_index?: number;
    delta?: string;
    event_id: string;
    item_id: string;
    logprobs?: null | OpenAIClient.Beta.Realtime.ConversationItemInputAudioTranscriptionDeltaEvent.Logprob[];
    type: "conversation.item.input_audio_transcription.delta";
}

Properties

content_index?: number

The index of the content part in the item's content array.

delta?: string

The text delta.

event_id: string

The unique ID of the server event.

item_id: string

The ID of the item.

The log probabilities of the transcription.

type: "conversation.item.input_audio_transcription.delta"

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