Voxa.Speech.Aws 0.7.2-alpha

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

Voxa.Speech.Aws

AWS Transcribe streaming speech-to-text for the Voxa pipeline.

Uses the official AWSSDK.TranscribeStreaming (v4) client: feeds PCM audio events into a Transcribe stream and surfaces partial + final results. Implements the same ISpeechToTextEngine contract as every Voxa STT provider; pair it with the generic SpeechToTextProcessor.

Use

{
  "Voxa": {
    "Stt": "Aws",
    "Aws": {
      "Region": "us-east-1",
      "Language": "en-US"
      // AccessKeyId/SecretAccessKey optional — omit to use the default AWS credential chain
      // (environment, shared profile, or IAM role).
    }
  }
}

AddVoxa(configuration) registers the descriptor automatically. À la carte:

builder.Services.AddVoxa(builder.Configuration, voxa =>
    voxa.AddProvider(AwsSpeechDescriptors.Stt));
Key Default Notes
Voxa:Aws:Region us-east-1 AWS region system name.
Voxa:Aws:Language en-US AWS Transcribe language code.
Voxa:Aws:AccessKeyId / SecretAccessKey Set together, or omit for the default credential chain.
Voxa:Aws:InputSampleRate 16000 PCM rate (mono).

Partials drive the live transcript; one final per utterance is emitted at the VAD / smart-turn boundary (shared StreamingTranscriptAccumulator). MIT licensed.

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.Aws:

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 87 7/10/2026
0.7.1-alpha 75 7/10/2026
0.7.0-alpha 77 7/10/2026
0.6.0-alpha 86 6/22/2026