Emitted when there is an additional text delta. This is also the first event emitted when the transcription starts. Only emitted when you create a transcription with the Stream parameter set to true.

interface TranscriptionTextDeltaEvent {
    delta: string;
    logprobs?: OpenAIClient.Audio.Transcriptions.TranscriptionTextDeltaEvent.Logprob[];
    type: "transcript.text.delta";
}

Properties

Properties

delta: string

The text delta that was additionally transcribed.

The log probabilities of the delta. Only included if you create a transcription with the include[] parameter set to logprobs.

type: "transcript.text.delta"

The type of the event. Always transcript.text.delta.