interface AudioTranscriptionResult {
    created_at: string;
    model: string;
    text: string;
    token_count: number;
}

Properties

created_at: string

The time when the response was created in ISO 8601 format. Example: 2020-05-02T16:27:51Z

model: string

The model used for audio transcriptions.

text: string

The transcribed text.

token_count: number

Number of estimated tokens from returned text.