Configuration options for STTv2 (Deepgram Flux model).

interface STTv2Options {
    apiKey?: string;
    eagerEotThreshold?: number;
    endpointUrl: string;
    eotThreshold?: number;
    eotTimeoutMs?: number;
    keyterms: string[];
    language?: string;
    mipOptOut?: boolean;
    model: string;
    sampleRate: number;
    tags?: string[];
}

Properties

apiKey?: string
eagerEotThreshold?: number
endpointUrl: string
eotThreshold?: number
eotTimeoutMs?: number
keyterms: string[]
language?: string
mipOptOut?: boolean
model: string
sampleRate: number
tags?: string[]