feat: add default voices

This commit is contained in:
2026-01-14 21:29:07 -03:00
parent 71da6e841d
commit 5877644ed9
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -6,6 +6,7 @@ class AzureTTS implements TTSModule {
private voices: Array<string> | undefined = undefined;
public name: string = 'Azure';
public defaultVoice: string = 'en-US-AvaNeural';
async getVoices(): Promise<Array<string> | undefined> {
if (!this.voices) {