feat(assemblyai): add universal-3-6-pro streaming model - #7100
Merged
tinalenguyen merged 1 commit intoSep 2, 2026
Conversation
Add universal-3-6-pro to the AssemblyAI STT plugin as a supported model. Server-side it is the next Universal-3 Pro release: same parameter support as universal-3-5-pro (prompt, agent_context, mode, voice_focus, language_codes, continuous_partials, interruption_delay) and the same connect-time defaults, differing only in which ASR deployment serves the session. universal-3-5-pro remains the default.
tinalenguyen
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds
universal-3-6-proto the AssemblyAI streaming STT plugin as a supportedmodelvalue.universal-3-6-prois the next Universal-3 Pro release. It is served by its own ASR deployment and shares all Universal-3 Pro behavior:prompt,agent_context,previous_context_n_turns,continuous_partials,interruption_delay,voice_focus/voice_focus_threshold,mode,language_codes, and formatted output. It introduces no new connection orUpdateConfigurationparameters.speech_model/modelLiterals and to_U3_PRO_MODELS, so the model gets the Pro-family parameter gating, the family's connect-time defaults (100 ms min/max turn silence unlessmodeis set, language detection on), and chat-context carryover.universal-3-5-proremains the default, and the deprecatedu3-proalias is unchanged.Testing
tests/test_plugin_assemblyai_stt.py: newuniversal-3-6-problock (accepted as a model, accepts the Pro-only params, connect query names the model and applies the family defaults), and the family-loop tests (voice_focus,mode,language_codes, carryover default) now include it. Full file: 111 passed; ruff and strict mypy clean.speech_model=universal-3-6-proconnection returns aBeginsession message, identical touniversal-3-5-pro.