Overview
Running your custom speech model via the Blynt API.
Blynt builds a speech recognition engine tuned for your product and runs it as a dedicated deployment. This documentation shows how to connect to that deployment and transcribe audio in real time over a WebSocket, so you can run your custom model in production with a few lines of client code.
Key features
- Real-time streaming transcription: Stream audio over a WebSocket and receive incremental
turn_partialand finalturn_endedtranscripts as the user speaks. See Streaming audio. - Client-controlled turns: You explicitly mark where each turn starts and ends with
start_turnandend_turn, giving you full control over when the engine listens. See Turn-taking mode. - Session- and turn-level contextual biasing: Boost recognition accuracy by declaring values you expect the user to say. Session-level context on
start_sessionapplies to every turn; turn-levelturnContextonstart_turnis added for that turn. Most effective for short, constrained answers picked from a known list (niche vocabulary, brand names, or fixed option sets), typical of elicitation prompts.