Voxa.Speech.Google
0.7.2-alpha
dotnet add package Voxa.Speech.Google --version 0.7.2-alpha
NuGet\Install-Package Voxa.Speech.Google -Version 0.7.2-alpha
<PackageReference Include="Voxa.Speech.Google" Version="0.7.2-alpha" />
<PackageVersion Include="Voxa.Speech.Google" Version="0.7.2-alpha" />
<PackageReference Include="Voxa.Speech.Google" />
paket add Voxa.Speech.Google --version 0.7.2-alpha
#r "nuget: Voxa.Speech.Google, 0.7.2-alpha"
#:package Voxa.Speech.Google@0.7.2-alpha
#addin nuget:?package=Voxa.Speech.Google&version=0.7.2-alpha&prerelease
#tool nuget:?package=Voxa.Speech.Google&version=0.7.2-alpha&prerelease
Voxa.Speech.Google
Google Cloud Speech-to-Text v2 streaming speech-to-text for the Voxa pipeline.
Uses the official Google.Cloud.Speech.V2 gRPC client: opens a StreamingRecognize call, streams
LINEAR16 audio, and surfaces interim + final results. Implements the same ISpeechToTextEngine
contract as every Voxa STT provider; pair it with the generic SpeechToTextProcessor.
Use
{
"Voxa": {
"Stt": "Google",
"Google": {
"ProjectId": "my-gcp-project",
"Language": "en-US",
"Model": "long",
"CredentialsPath": "C:/keys/sa.json" // or CredentialsJson, or ADC (GOOGLE_APPLICATION_CREDENTIALS)
}
}
}
AddVoxa(configuration) registers the descriptor automatically. À la carte:
builder.Services.AddVoxa(builder.Configuration, voxa =>
voxa.AddProvider(GoogleSpeechDescriptors.Stt));
| Key | Default | Notes |
|---|---|---|
Voxa:Google:ProjectId |
— | Required (GCP project). |
Voxa:Google:Location |
global |
A region (e.g. us-central1) sets the regional endpoint. |
Voxa:Google:Language |
en-US |
BCP-47 code. |
Voxa:Google:Model |
long |
long / short / telephony / … |
Voxa:Google:CredentialsPath / CredentialsJson |
— | Service-account key; omit to use ADC. |
Interims drive the live transcript; one final per utterance is emitted at the VAD / smart-turn
boundary (shared StreamingTranscriptAccumulator). MIT licensed.
| Product | Versions 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. |
-
net10.0
- Google.Cloud.Speech.V2 (>= 1.3.0)
- Voxa.Speech.Abstractions (>= 0.7.2-alpha)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Voxa.Speech.Google:
| 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 | 66 | 7/10/2026 |
| 0.7.0-alpha | 73 | 7/10/2026 |
| 0.6.0-alpha | 85 | 6/22/2026 |