Audio Reconstruction
Guide to reconstructing the audio from previous Chats for playback.
The audio reconstruction feature allows you to listen to past conversations by stitching together all audio snippets from a Chat—including both user inputs and EVI’s responses—into a single audio file. This can be useful for reviewing interactions, quality assurance, or integrating playback functionality into your application.
If data retention is disabled, Chat history will not be recorded, and previous Chat data and audio reconstruction will not be retrievable.
How audio reconstruction works
The audio reconstruction process combines individual audio clips into a continuous file. Here are some important considerations:
- Storage duration: Reconstructed audio files are stored indefinitely.
- Signed URL expiration: The signed_audio_url expires after 60 minutes. If it expires before you download the file, you can generate a new URL by making another API request.
- No merging of Chats: The API does not support combining multiple Chats within a Chat Group into a single audio file.
- Asynchronous process: Audio reconstruction is performed in the background. The time required depends on the conversation’s length and system load.
Audio reconstruction statuses
The status of an audio reconstruction request will indicate its progress:
QUEUED
: The reconstruction job is waiting to be processed.IN_PROGRESS
: The reconstruction is currently being processed.COMPLETE
: The audio reconstruction is finished and ready for download.ERROR
: An error occurred during the reconstruction process.CANCELED
: The reconstruction job has been canceled.
Fetching reconstructed audio for a Chat
To fetch the reconstructed audio for a specific Chat, use the following endpoint: /chats/{chat_id}/audio.
Example response (audio reconstruction initiated):
If audio reconstruction for a Chat or Chat Group hasn’t already occurred, calling the respective endpoint will automatically add the audio reconstruction process to our job queue.
Fetching reconstructed audio for a Chat Group
To fetch a paginated list of reconstructed audio for Chats within a Chat Group, use the following endpoint: /chat_groups/{chat_group_id}/audio.
Polling for completion
Since the reconstruction process is asynchronous, you can poll the endpoint to check the status field until it changes
to COMPLETE
. Once the status is COMPLETE
, the signed_audio_url
and signed_url_expiration
fields will be populated.
Downloading the audio file
After the reconstruction is complete, you can download the audio file using the signed_audio_url
. The following cURL
command saves the audio file using the original filename provided by the server: