You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use the simple names in the list like "preacher" it speaks. I would expect that I could also use the name that I want to use from the list, and it would speak.
Actual result
In reality, I get this error uberduck.classes.InvalidVoice: Invalid voice Traceback:
Traceback (most recent call last): File "/Users/oddflower/poppy-ai/duck.py", line 27, in <module> client.speak(speech, voice, play_sound = True) File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/uberduck/main.py", line 174, in speak _handle_exceptions(response.status_code, json, voice) File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/uberduck/main.py", line 41, in _handle_exceptions raise InvalidVoice(voice) uberduck.classes.InvalidVoice: Invalid voice: azure_en-US-EmmaMultilingualNeural.
Uberduck version
0.0.5
Operating system
MacOS 14.2.1
Checklist
- This bug was found on the latest version of Uberduck
- You have checked that there is no issue already mentioning this bug, open or closed
- Full details of the bug have been provided/shown, including full tracebacks in case of exceptions
- All API keys and API secrets have been hidden/omitted from any screenshots or code, if any
Additional context
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Description
When I LIST the voices I see the voice I want to use ("azure_en-US-EmmaMultilingualNeural"), but if I try to use it I get an error.
Reproduction steps
`import uberduck
client = uberduck.UberDuck(getenv('UBERDUCK_API_KEY'), getenv('UBERDUCK_SECRET_KEY'))
voices = uberduck.get_voices(return_only_names = True)
speech = "testing"
voice = "azure_en-US-EmmaMultilingualNeural"
if voice == 'list':
print('Available voices:\n')
for voice in sorted(voices): # sorting the voice list in alphabetical order
print(voice)
exit()
#if voice not in voices:
print('Invalid voice')
exit()
client.speak(speech, voice, play_sound = True)
print('Spoke voice')`
#if voice not in voices:
print('Invalid voice')
exit()
client.speak(speech, voice, play_sound = True)
print('Spoke voice')
Expected result
If you use the simple names in the list like "preacher" it speaks. I would expect that I could also use the name that I want to use from the list, and it would speak.
Actual result
In reality, I get this error
uberduck.classes.InvalidVoice: Invalid voice
Traceback:Traceback (most recent call last): File "/Users/oddflower/poppy-ai/duck.py", line 27, in <module> client.speak(speech, voice, play_sound = True) File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/uberduck/main.py", line 174, in speak _handle_exceptions(response.status_code, json, voice) File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/uberduck/main.py", line 41, in _handle_exceptions raise InvalidVoice(voice) uberduck.classes.InvalidVoice: Invalid voice: azure_en-US-EmmaMultilingualNeural.
Uberduck version
0.0.5
Operating system
MacOS 14.2.1
Checklist
Additional context
Thank you in advance!
The text was updated successfully, but these errors were encountered: