deepgram-dotnet-conversational-stt
Installation
SKILL.md
Using Deepgram Conversational STT / Flux (.NET SDK)
This repo does not currently expose a dedicated Flux / conversational STT API surface comparable to the Python SDK's listen.v2.connect(...) + TurnInfo flow.
Use a different skill when:
- You only need standard streaming transcription without turn awareness →
deepgram-dotnet-speech-to-text. - You need a full voice assistant (STT + LLM + TTS) →
deepgram-dotnet-voice-agent.
Current repo status
What exists:
ClientFactory.CreateListenWebSocketClient()returns the latest WebSocket listen client.- Request model:
Deepgram.Models.Listen.v2.WebSocket.LiveSchema. - Event models:
OpenResponse,MetadataResponse,ResultResponse,SpeechStartedResponse,UtteranceEndResponse,CloseResponse,ErrorResponse,UnhandledResponse. - Control helpers:
SendKeepAlive(),SendFinalize(),SendClose(),Send(...).