Interface SpeechTranscriptionRequestOptions

interface SpeechTranscriptionRequestOptions {
    language?: string;
    prompt?: string;
    model?: string;
    responseFormat?: string;
    userId?: string;
    temperature?: string | number;
    providerId?: string;
    stream?: string | boolean;
}

Properties

language?: string
prompt?: string
model?: string
responseFormat?: string
userId?: string
temperature?: string | number
providerId?: string
stream?: string | boolean