Voxa.Transports.Telephony 0.7.2-alpha

This is a prerelease version of Voxa.Transports.Telephony.
dotnet add package Voxa.Transports.Telephony --version 0.7.2-alpha
                    
NuGet\Install-Package Voxa.Transports.Telephony -Version 0.7.2-alpha
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Voxa.Transports.Telephony" Version="0.7.2-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Voxa.Transports.Telephony" Version="0.7.2-alpha" />
                    
Directory.Packages.props
<PackageReference Include="Voxa.Transports.Telephony" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Voxa.Transports.Telephony --version 0.7.2-alpha
                    
#r "nuget: Voxa.Transports.Telephony, 0.7.2-alpha"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Voxa.Transports.Telephony@0.7.2-alpha
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Voxa.Transports.Telephony&version=0.7.2-alpha&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Voxa.Transports.Telephony&version=0.7.2-alpha&prerelease
                    
Install as a Cake Tool

Voxa.Transports.Telephony

Shared telephony media-stream transport for the Voxa voice pipeline (VTL-001). Runs a phone call in and out of a Voxa pipeline over a WebSocket — no WebRTC, no SIP, no ICE/TURN.

Telephony providers (Twilio Media Streams, Azure ACS) bridge the PSTN/WebRTC side themselves and hand you JSON messages over a WebSocket whose payload is base64-encoded audio. This package is the vendor-neutral half of that:

  • TelephonyMediaStreamSource / TelephonyMediaStreamSink — a PipelineSource/PipelineSink pair that own the WebSocket read/write loops, the bounded outbound queue with the barge-in epoch purge, and the 8 kHz ↔ pipeline-rate resample bridge.
  • ITelephonyMediaCodec — the small per-vendor seam (parse one inbound message → a transport event; serialize outbound audio / clear / mark). The base does the μ-law decode and the resample, so a codec is just JSON framing.
  • MuLaw — allocation-free G.711 (μ-law / PCMU) encode/decode.

The VAD → STT → agent → TTS chain in the middle is untouched: the same DefaultVoicePipelineComposer that builds the native WebSocket route builds the telephony route. Telephony is purely an edge skin.

The Twilio codec + TwiML endpoint live in Voxa.Transports.Twilio. This base package has no ASP.NET dependency — it operates over any System.Net.WebSockets.WebSocket.

Pre-alpha; the public API still moves.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Voxa.Transports.Telephony:

Package Downloads
Voxa

Batteries-included Voxa package. One package reference: AddVoxa(cfg) + MapVoxaVoice("/voice").UseDefaults() gives a working voice bot with STT, TTS, VAD, and an OpenAI chat agent — no knowledge of frames required.

Voxa.Transports.Twilio

Twilio Media Streams transport for the Voxa pipeline (VTL-001). MapVoxaTwilioVoice("/twilio") serves the TwiML webhook and accepts the media WebSocket, running a phone call through the SAME composed VAD→STT→agent→TTS pipeline as the native route — with barge-in. The wire is hand-rolled JSON over the shared Voxa.Transports.Telephony base (μ-law 8 kHz); no Twilio SDK, no WebRTC. Includes X-Twilio-Signature validation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.2-alpha 90 7/10/2026
0.7.1-alpha 72 7/10/2026
0.7.0-alpha 73 7/10/2026
0.6.0-alpha 85 6/22/2026