From 09e10e4113491322c363eaf548bd632797478734 Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 13 Feb 2026 22:48:32 -0300 Subject: [PATCH] fix: make v3 default --- src/modules/tts-modes/elevenlabs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/tts-modes/elevenlabs.ts b/src/modules/tts-modes/elevenlabs.ts index 7a07da7..493fda2 100644 --- a/src/modules/tts-modes/elevenlabs.ts +++ b/src/modules/tts-modes/elevenlabs.ts @@ -71,7 +71,7 @@ export class ElevenLabsTTS implements TTSModule { constructor() { this.settings = ElevenLabsTTS.DEFAULT_SETTINGS; - this.modelId = 'eleven_flash_v2_5'; + this.modelId = 'eleven_v3'; if (this.canBeUsed()) this.initializationPromise = this.init();