Compare commits

...

3 Commits

Author SHA1 Message Date
neru 20e162dc32 chore: remove unused param 2026-05-06 01:00:36 -03:00
neru 09e10e4113 fix: make v3 default 2026-02-13 22:48:32 -03:00
neru cbb5a9a76a fix: uncomment ShortName 2026-02-11 02:39:09 -03:00
3 changed files with 3 additions and 4 deletions
-1
View File
@@ -8,7 +8,6 @@ services:
DISCORD_TOKEN: ${DISCORD_TOKEN}
DISCORD_OWNER_ID: ${DISCORD_OWNER_ID}
TTS_TIKTOK_SESSIONID: ${TTS_TIKTOK_SESSIONID}
TTS_ELEVENLABS_KEY: ${TTS_ELEVENLABS_KEY}
TTS_ELEVENLABS_REFRESHTOKEN: ${TTS_ELEVENLABS_REFRESHTOKEN}
restart: unless-stopped
volumes:
+2 -2
View File
@@ -29,8 +29,8 @@ interface PendingRequest {
}
interface VoiceInfo {
Name: string;
// ShortName: string,
// Name: string;
ShortName: string,
// Gender: string,
// Locale: string,
}
+1 -1
View File
@@ -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();