interface STTOptions {
    apiKey?: string;
    baseURL?: string;
    client?: OpenAI;
    detectLanguage: boolean;
    language: string;
    model: string;
    noiseReductionType?: NoiseReductionType;
    prompt?: string;
    turnDetection?: null | TurnDetectionType;
    useRealtime: boolean;
    vad?: VAD;
}

Properties

apiKey?: string
baseURL?: string
client?: OpenAI
detectLanguage: boolean
language: string
model: string
noiseReductionType?: NoiseReductionType
prompt?: string
turnDetection?: null | TurnDetectionType
useRealtime: boolean
vad?: VAD