Official Python client for Speechmatics Real-Time API for voice agents. Supports WebSocket-based streaming for real-time transcription and agent interaction. Current version: 0.2.8, release cadence: irregular.
pip install speechmatics-voiceNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Connect to Speechmatics Voice Agent, send audio, and receive real-time transcriptions.
Ensure audio is resampled to 16kHz mono 16-bit PCM before sending.
Pass `auth_token='your_token'` directly to the constructor.
Always use `async with` or explicitly call `await client.stop()` to close connections.
Install with `pip install speechmatics-voice` and import as `from speechmatics.voice import VoiceAgentClient`
Check that auth token is correct and audio is 16kHz 16-bit PCM mono.
Use `await client.start()` to initiate connection.