diff --git a/src/modules/tts-modes/elevenlabs.ts b/src/modules/tts-modes/elevenlabs.ts index 607f7b1..4809fa0 100644 --- a/src/modules/tts-modes/elevenlabs.ts +++ b/src/modules/tts-modes/elevenlabs.ts @@ -137,7 +137,7 @@ export class ElevenLabsTTS implements TTSModule { public getModels(): Array { if (!this.models) return []; - return this.models.map((mod) => mod.model_id); + return this.models.map((mod) => mod.name); } private async fetchVoices(): Promise {