Emitted when the transcription is complete. Contains the complete transcription text. Only emitted when you create a transcription with the Stream parameter set to true.

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

Properties

Properties

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

text: string

The text that was transcribed.

type: "transcript.text.done"

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