Emitted when there is a partial transcript of audio.

interface ResponseAudioTranscriptDeltaEvent {
    delta: string;
    sequence_number: number;
    type: "response.audio.transcript.delta";
}

Properties

delta: string

The partial transcript of the audio response.

sequence_number: number

The sequence number of this event.

type: "response.audio.transcript.delta"

The type of the event. Always response.audio.transcript.delta.