redaction [offline]
Not supported yet.
This documentation is valid for the following list of our models:
#g1_redaction
Note:
Previously, our STT models operated via a single API call to POST https://api.aimlapi.com/v1/stt
. You can view the API schema here.
Now, we are switching to a new two-step process:
POST https://api.aimlapi.com/v1/stt/create
โ Creates and submits a speech-to-text processing task to the server. This method accepts the same parameters as the old version but returns ageneration_id
instead of the final transcript.GET https://api.aimlapi.com/v1/stt/{generation_id}
โ Retrieves the generated transcript from the server using thegeneration_id
obtained from the previous API call.
This approach helps prevent generation failures due to timeouts. We've prepared a couple of examples below to make the transition to the new STT API easier for you.
Model Overview
Model removes sensitive information (credit cards info, personally identifiable information, account numbers, etc) from your transcripts.
Setup your API Key
If you donโt have an API key for the AI/ML API yet, feel free to use our Quickstart guide.
Submit a request
API Schema
Creating and sending a speech-to-text conversion task to the server
Requesting the result of the task from the server using the generation_id
Last updated
Was this helpful?