interface ElevenlabsOptions {
    apply_text_normalization?: "on" | "off" | "auto";
    auto_mode?: boolean;
    chunk_length_schedule?: number[];
    enable_logging?: boolean;
    enable_ssml_parsing?: boolean;
    inactivity_timeout?: number;
    language_code?: string;
    preferred_alignment?: string;
    similarity_boost?: number;
    speed?: number;
    stability?: number;
    style?: number;
    sync_alignment?: boolean;
    use_speaker_boost?: boolean;
}

Properties

apply_text_normalization?: "on" | "off" | "auto"

Text normalization mode. Default: "auto".

auto_mode?: boolean
chunk_length_schedule?: number[]
enable_logging?: boolean
enable_ssml_parsing?: boolean
inactivity_timeout?: number

Inactivity timeout in seconds. Default: 60.

language_code?: string
preferred_alignment?: string
similarity_boost?: number

Voice similarity tuning, typically in the range [0, 1].

speed?: number

Speech speed multiplier.

stability?: number

Voice stability tuning, typically in the range [0, 1].

style?: number

Style exaggeration tuning, typically in the range [0, 1].

sync_alignment?: boolean
use_speaker_boost?: boolean