v0.7.3
What's Changed
What's Changed
- Add support for
hume.empathic_voice.chats.get_audio(...)
for getting a URL that you can use to download the reconstructed audio for a chat- Note: this method will not return a ready-to-use URL right away, it will kick off a job to ready the URL. You can use this like
result = await hume.empathic_voice.chats.get_audio(...) await asyncio.sleep(10) result = await hume.empathic_voice.chats.get_audio(...) if result.status != "COMPLETE": raise TimeoutError('Job did not complete in 10 seconds') url_containing_download = json.signed_audio_url
- Note: this method will not return a ready-to-use URL right away, it will kick off a job to ready the URL. You can use this like
- Add support for
hume.empathic_voice.chat_groups.get_audio(...)
to list urls containing reconstructed audio for many chats in a chat group - Custom Voices
- Add support for new base voice
SUNNY
- Updates custom voice parameters to reflect the latest parameters.
- Add support for new base voice
Full Changelog: v0.7.2...v0.7.3