interface STTOptions {
    apiKey?: string;
    baseURL?: string;
    httpSession?: STTHTTPSession;
    includeTimestamps?: boolean;
    keyterms?: string[];
    languageCode?: string;
    modelId?: string;
    sampleRate?: STTRealtimeSampleRates;
    serverVad?: null | VADOptions;
    tagAudioEvents?: boolean;
    useRealtime?: boolean;
}

Properties

apiKey?: string
baseURL?: string
httpSession?: STTHTTPSession
includeTimestamps?: boolean
keyterms?: string[]
languageCode?: string
modelId?: string
serverVad?: null | VADOptions
tagAudioEvents?: boolean
useRealtime?: boolean