Universal-3 Pro (Async)
Set up and configure Universal-3 Pro (Async) for pre-recorded audio transcription.
Universal-3 Pro is our most powerful Voice AI model, designed to capture the “hard stuff” that traditional ASR models struggle with. It delivers state-of-the-art accuracy for entities, rare words, and domain-specific terminology out of the box, with prompting support for fully customized transcription output.
Quickstart
Get started with Universal-3 Pro using the code below. This example transcribes a pre-recorded audio file and prints the transcript text to your terminal.
Python SDK
Python
JavaScript SDK
JavaScript
Language support
Universal-3 Pro supports English, Spanish, Portuguese, French, German, and Italian. To access all 99 languages, use "speech_models": ["universal-3-pro", "universal-2"] as shown in the code example. Read more here.
Key capabilities
The model out of the box outperforms all ASR models on the market on accuracy, especially as it pertains to entities and rare words. With prompting, you can get an entirely customized transcription output that rivals near-human-level transcription.
- Keyterm Prompting: Improve recognition of domain-specific terminology, rare words, and proper nouns
- Prompting: Guide transcription style, formatting, and output characteristics
To fine-tune to your use case, see the Prompting section. Not sure where to start? Try our Prompt Generator.
Start with no prompt
We strongly recommend testing with no prompt first. When you omit the prompt parameter, Universal-3-Pro automatically applies a built-in default prompt that is already optimized for accuracy across a wide range of audio types — including verbatim transcription, multilingual code-switching, and challenging audio conditions. For most use cases, the default prompt delivers excellent results out of the box.
If you’re going to build a prompt, start with one of the recommended prompts and then tweak it for your use case. You should not start from scratch with your prompt — use a recommended prompt and then build off of it. Please read the Prompting Guide (Async) if you’d like to build your prompt yourself.
Remember, prompts are primarily instructional, so adding a large amount of context may not make a significant impact on accuracy and could reduce instruction-following coherence. Feel free to layer in additional instructions that you see in the Prompting Guide (Async).
Benchmarking
A note on evaluating modern speech-to-text
Across the industry, we’re seeing that as models improve, they sometimes capture words or phrases that human transcribers originally missed. In WER evaluations, this shows up as insertions, even when the model is technically correct. We’ve also seen substitutions impact scores in cases where formatting differs (e.g., “alright” vs. “all right”), despite no meaningful accuracy difference.
To help address this, we’re actively developing documentation, blog content, and benchmarking tools focused on best practices for evaluating modern speech-to-text systems. We’ll continue sharing these resources as they’re released.
This is increasingly becoming an industry-wide benchmarking challenge as models begin to match, or exceed, human transcription quality in certain scenarios.
For more details on evaluating transcription accuracy, including tips on using semantic WER and handling substitution artifacts, see the Evaluating transcription accuracy section in the Prompting Guide.
Keyterms prompting
Keyterms prompting allows you to provide up to 1,000 words or phrases (maximum 6 words per phrase) using the keyterms_prompt parameter to improve transcription accuracy for those terms and related variations or contextually similar phrases.
Prompt and Keyterms Prompt
The prompt and keyterms_prompt parameters cannot be used in the same request. Please choose either one or the other based on your use case. When you use keyterms_prompt, your boosted words are appended to the default prompt automatically. See How keyterms prompting works behind the scenes below.
Here is an example showing how you can use keyterms prompting to improve transcription accuracy for a name with distinctive spelling and formatting.
Without keyterms prompting:
With keyterms prompting:
Python SDK
Python
JavaScript SDK
JavaScript
How keyterms prompting works behind the scenes
Behind the scenes, the keyterms_prompt parameter works by appending your keyterms to the system prompt. The model receives the combined <prompt> + <keyterms> as a single input, which is how keyterms are boosted during transcription.
You are free to replicate this behavior manually by appending keyterms directly to the end of your prompt parameter. For example:
Your mileage may vary with manually appending keyterms to the prompt. We recommend using the keyterms_prompt parameter instead, which handles the formatting and appending for you and is optimized for keyterm boosting. Manual appending may not produce the same results as the dedicated keyterms_prompt parameter.
Prompting
For a comprehensive guide on crafting effective prompts, including best practices, prompt capabilities, and example prompts, see the Prompting guide.
Universal-3 Pro delivers great accuracy out of the box. To fine-tune transcription results to your use case, provide a prompt with up to 1,500 words of context in plain language. This helps the model consistently recognize domain-specific terminology, apply your preferred formatting conventions, handle code switching between languages, and better interpret ambiguous speech.
Prompt and Keyterms Prompt
The prompt and keyterms_prompt parameters cannot be used in the same request. Please choose either one or the other based on your use case. When you use keyterms_prompt, your boosted words are appended to the default prompt automatically. See How keyterms prompting works behind the scenes below.
Default prompt
When no prompt is provided, Universal-3 Pro automatically applies a default prompt based on the audio length:
- If the audio is longer than 10 seconds, the following default prompt is used:
- Otherwise, the default prompt is
Transcribe verbatim.
You can override the default prompt by providing your own prompt value. See the sections below for examples.
Best simple prompt
If you want strong accuracy without the verbatim and multilingual instructions, use this single-line prompt:
This gives the model clear guidance to always attempt transcription while keeping instructions minimal. It’s a great starting point if you don’t need multilingual code-switching or maximum disfluency capture.
Handling unclear audio with [masked]
Recommended for reducing hallucinations
This prompt is one of the most effective strategies for avoiding hallucinations on unclear or difficult audio. Instead of forcing the model to guess, it explicitly flags uncertain segments, giving you full visibility into areas of uncertainty.
You can also use [unclear] instead of [masked].
The [masked] tag may also be applied to profanity in the audio. If preserving profanity is important for your use case, use [unclear] instead to avoid profanity being tagged.
The [masked] strategy materially reduces hallucinations while still preserving difficult but genuine speech. It also provides greater transparency in the transcript — sections where audio is unclear are explicitly flagged as [masked], giving you visibility into areas of uncertainty rather than forcing potentially incorrect guesses.
For more recommended prompts and detailed prompt capabilities, see the Prompting guide.
Verbatim transcription and disfluencies
Capture natural speech patterns exactly as spoken, including um, uh, false starts, repetitions, stutters. Add examples of the verbatim elements you want to transcribe in the prompt parameter to guide the model.
Without prompt:
With prompt, the model better captures filler words like “uh” and false starts like “we, we, we’re friends”.
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Audio event tags
Audio tags capture non-speech events like music, laughter, pauses, applause, background noise, and other sounds in your audio. Include examples of audio tags you want to transcribe in the prompt parameter to guide the model.
Without prompt:
With prompting, non-speech events like beeps are called out in the transcript.
Here are some examples of audio tags you can prompt for: [music], [laugher], [applause], [noise], [pause], [inaudible], [sigh], [gasp], [cheering], [sound], [screaming], [bell], [beep], [sound effect], [buzzer], and more.
Python SDK
Python
JavaScript SDK
JavaScript
Labeling crosstalk
Label overlapping speech, interruptions, and crosstalk segments in the transcript.
Without prompt:
With prompt:
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Speaker attribution
Prompted speaker diarization identifies who said what in a conversation. It works especially well in cases where there are frequent interjections, such as quick acknowledgments or single-word responses, or when working with limited spoken audio, such as short-duration files.
Without prompt:
With prompt:
Without prompting, it may appear that speaker B said everything. But with prompting, the model correctly identifies this as 5 separate speaker turns, capturing utterances as short as a single word, like “good”.
Python SDK
Python
JavaScript SDK
JavaScript
Output style and formatting
Control punctuation, capitalization, and readability without changing words.
Without prompt:
With prompt, the model accurately captures the speaker’s emotional state through punctuation, adding exclamation marks during moments of yelling and emphasis.
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Numbers and measurements
Control how numbers, percentages, and measurements are formatted.
Without prompt:
With prompt:
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Context aware clues
Help with jargon, names, and domain expectations that are known from the audio file.
Without prompt:
With prompt, adding ‘clinical history evaluation’ as a context clue corrects spelling of ‘Glicoside’ to ‘Glycoside’.
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Entity accuracy and spelling
Improve transcript accuracy for proper nouns, brands, technical terms, and domain vocabulary with prompting.
Without prompt:
With prompt, the model corrects the misrecognition of “Anktiva,” which would otherwise be transcribed as “Entiva”.
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Caution: Over-instructing the model to follow examples can cause hallucinations when these examples are encountered.
Native code switching
Handle audio where speakers switch between languages.
Without prompt:
With prompt, the model is able to preserve the speaker’s natural code switching between English and French, transcribing each language as spoken.
Python SDK
Python
JavaScript SDK
JavaScript
Example prompts:
Requires language_detection: true on your request. If a single language code
is specified, the model will try to transcribe only that language.
Temperature parameter
Control the amount of randomness injected into the model’s response using the temperature parameter.
The temperature parameter accepts values from 0.0 to 1.0, with a default value of 0.0.
Choosing the right temperature value
The temperature parameter controls how deterministic or exploratory the model’s decoding is. Lower values (e.g., 0.0) make the model fully deterministic, which can be useful for strict reproducibility. Slightly higher values (e.g., 0.1) introduce a small amount of exploration.
Low non-zero temperatures often produce better transcription accuracy (lower WER)—in some cases up to ~5% relative improvement—by allowing the model to recover from early decoding mistakes, while still remaining highly stable. Higher values (e.g., > 0.3) increase randomness and may reduce accuracy.
Python SDK
Python
JavaScript SDK
JavaScript
Best practices for prompt engineering
Check out this guide to learn even more about how to craft effective prompts for Universal-3 Pro speech transcription, which includes an AI prompt generator tool.
Support for 99 languages
With the speech_models parameter, you can list multiple speech models in priority order, allowing our system to automatically route your audio based on language support.
Model routing behavior: The system attempts to use the models in priority order falling back to the next model when needed. For example, with ["universal-3-pro", "universal-2"], the system will try to use universal-3-pro for languages it supports (English, Spanish, Portuguese, French, German, and Italian), and automatically fall back to Universal-2 for all other languages. This ensures you get the best performing transcription where available while maintaining the widest language coverage.