From 12efc28d736ae2946b499ff36ece9185b18fbe0c Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Mon, 2 Sep 2024 11:10:43 -0400 Subject: [PATCH] . --- ElevenLabs-DotNet/TextToSpeech/TextToSpeechRequest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElevenLabs-DotNet/TextToSpeech/TextToSpeechRequest.cs b/ElevenLabs-DotNet/TextToSpeech/TextToSpeechRequest.cs index 34e2f3a..42e6acb 100644 --- a/ElevenLabs-DotNet/TextToSpeech/TextToSpeechRequest.cs +++ b/ElevenLabs-DotNet/TextToSpeech/TextToSpeechRequest.cs @@ -17,7 +17,7 @@ public TextToSpeechRequest(string text, Model model, VoiceSettings voiceSettings } Text = text; - Model = model ?? Models.Model.MonoLingualV1; + Model = model ?? Models.Model.EnglishV1; VoiceSettings = voiceSettings ?? throw new ArgumentNullException(nameof(voiceSettings)); }