Remove voice_settings parameters

I removed the voice_settings parameters as it was an irrelevant change.
pull/242/head
Dylan N 2023-04-10 16:44:01 +02:00 committed by GitHub
parent 89853cf3b8
commit 88a802a675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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()
thread.start()