/** * Voice settings for dialogue generation. Only `stability` is supported for `eleven_v3` dialogue models. */ export interface TextToDialogueWebsocketVoiceSettings { /** Determines how stable the voice is and the randomness between each generation. Lower values introduce broader emotional range for the voice. Higher values can result in a monotonous voice with limited emotion. */ stability?: number; }