From 88a802a675eaa0385e91a73d435fdd4c1e1c13d7 Mon Sep 17 00:00:00 2001 From: Dylan N <65708398+bituq@users.noreply.github.com> Date: Mon, 10 Apr 2023 16:44:01 +0200 Subject: [PATCH] Remove voice_settings parameters I removed the voice_settings parameters as it was an irrelevant change. --- scripts/speak.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/speak.py b/scripts/speak.py index d8dd191bc..8e0fbd9c4 100644 --- a/scripts/speak.py +++ b/scripts/speak.py @@ -22,7 +22,7 @@ queue_semaphore = Semaphore(1) # The amount of sounds to queue before blocking t def eleven_labs_speech(text, voice_index=0): tts_url = "https://api.elevenlabs.io/v1/text-to-speech/{voice_id}".format( voice_id=voices[voice_index]) - formatted_message = {"text": text, "voice_settings": {"stability": 0.05, "similarity_boost": 0.8}} + formatted_message = {"text": text} response = requests.post( tts_url, headers=tts_headers, json=formatted_message) @@ -59,4 +59,4 @@ def say_text(text, voice_index=0): queue_semaphore.acquire(True) thread = threading.Thread(target=speak) - thread.start() \ No newline at end of file + thread.start()