BlyntBlynt API

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_partial and final turn_ended transcripts as the user speaks. See Streaming audio.
  • Client-controlled turns: You explicitly mark where each turn starts and ends with start_turn and end_turn, giving you full control over when the engine listens. See Turn-taking mode.
  • Turn-level contextual biasing: Boost recognition accuracy for the next turn by declaring the values you expect the user to say. Most effective for short, constrained answers picked from a known list (niche vocabulary, brand names, or fixed option sets), typical of elicitation prompts. See turnContext on start_turn.

Learn more

On this page