Voxa.Speech.ElevenLabs 0.7.2-alpha

This is a prerelease version of Voxa.Speech.ElevenLabs.
dotnet add package Voxa.Speech.ElevenLabs --version 0.7.2-alpha
                    
NuGet\Install-Package Voxa.Speech.ElevenLabs -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.Speech.ElevenLabs" 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.Speech.ElevenLabs" Version="0.7.2-alpha" />
                    
Directory.Packages.props
<PackageReference Include="Voxa.Speech.ElevenLabs" />
                    
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.Speech.ElevenLabs --version 0.7.2-alpha
                    
#r "nuget: Voxa.Speech.ElevenLabs, 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.Speech.ElevenLabs@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.Speech.ElevenLabs&version=0.7.2-alpha&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Voxa.Speech.ElevenLabs&version=0.7.2-alpha&prerelease
                    
Install as a Cake Tool

Voxa.Speech.ElevenLabs

ElevenLabs text-to-speech engine for Voxa pipelines. Best-in-class voice quality, voice cloning, and multilingual support.

Install

dotnet add package Voxa.Speech.ElevenLabs --prerelease

Quickstart

using Voxa.Speech;
using Voxa.Speech.ElevenLabs;

var elevenlabs = new ElevenLabsOptions
{
    ApiKey = "<your-key>",
    VoiceId = "21m00Tcm4TlvDq8ikWAM",         // Rachel — pick from elevenlabs.io/voice-library
    ModelId = "eleven_multilingual_v2",
    OutputSampleRate = 24000,
};

var pipeline = Pipeline.Build()
    .Source(...)
    .Then(new MicrosoftAgentsProcessor(yourAgent))
    .Then(ElevenLabs.Synthesis(elevenlabs))
    .Sink(...);

What's included

  • ElevenLabsTextToSpeechEngine — POSTs to /v1/text-to-speech/{voiceId}/stream with output_format=pcm_<rate>, streams the chunked response.
  • ElevenLabsOptions — api key, voice id, model id, output sample rate, optional voice settings (stability, similarity boost, style, speed, speaker boost).
  • ElevenLabs.Synthesis(...) — one-liner processor factory.

This package is TTS-only; for STT pair with Voxa.Speech.Azure, Voxa.Speech.OpenAI, or Voxa.Services.AzureVoiceLive.

License

MIT.

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 (1)

Showing the top 1 NuGet packages that depend on Voxa.Speech.ElevenLabs:

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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.2-alpha 88 7/10/2026
0.7.1-alpha 72 7/10/2026
0.7.0-alpha 75 7/10/2026
0.6.0-alpha 81 6/22/2026
0.5.0-alpha 76 6/13/2026
0.4.0-alpha 1,248 5/10/2026
0.3.0-alpha 80 5/9/2026
0.2.0-alpha 74 5/8/2026