An audio output from the model.

interface ResponseOutputAudio {
    data: string;
    transcript: string;
    type: "output_audio";
}

Properties

Properties

data: string

Base64-encoded audio data from the model.

transcript: string

The transcript of the audio data from the model.

type: "output_audio"

The type of the output audio. Always output_audio.