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()