Represents a transcription response returned by model, based on the provided input.

interface Transcription {
    logprobs?: OpenAIClient.Audio.Transcriptions.Transcription.Logprob[];
    text: string;
}

Properties

The log probabilities of the tokens in the transcription. Only returned with the models gpt-4o-transcribe and gpt-4o-mini-transcribe if logprobs is added to the include array.

text: string

The transcribed text.

""