/** * Deepgram TTS configuration parameters. */ export interface DeepgramTtsParams { /** Deepgram API key */ api_key: string; /** Deepgram TTS model (for example, "aura-2-thalia-en") */ model: string; /** Deepgram WebSocket endpoint override */ base_url?: string; /** Audio sampling rate in Hz */ sample_rate?: number; /** Controls whether the TTS module skips bracketed content when reading LLM response text. */ skip_patterns?: number[]; /** Accepts any additional properties */ [key: string]: any; }