Interface AudioOutputConfig

Defines configuration for audio output (Text-to-Speech).

Export

AudioOutputConfig

interface AudioOutputConfig {
    provider: string;
    voiceId?: string;
    textToSpeak: string;
    url?: string;
    format?: string;
    languageCode?: string;
    customParams?: Record<string, any>;
}

Properties

provider: string
voiceId?: string
textToSpeak: string
url?: string
format?: string
languageCode?: string
customParams?: Record<string, any>