Skip to content

v0.7.3

Compare
Choose a tag to compare
@twitchard twitchard released this 24 Oct 20:31
· 9 commits to main since this release
ca23cd2

What's Changed

  • 🌿 Fern Regeneration -- October 24, 2024 by @fern-api in #203

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 
  • 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.

Full Changelog: v0.7.2...v0.7.3