A fallback model with optional extra configuration. Extra fields are passed through to the provider.

interface STTFallbackModel {
    extraKwargs?: Record<string, unknown>;
    model: string;
}

Properties

Properties

extraKwargs?: Record<string, unknown>

Extra configuration for the model.

model: string

Model name (e.g. "deepgram/nova-3", "assemblyai/universal-streaming", "cartesia/ink-whisper").