Voxa.Speech.Groq
0.7.2-alpha
dotnet add package Voxa.Speech.Groq --version 0.7.2-alpha
NuGet\Install-Package Voxa.Speech.Groq -Version 0.7.2-alpha
<PackageReference Include="Voxa.Speech.Groq" Version="0.7.2-alpha" />
<PackageVersion Include="Voxa.Speech.Groq" Version="0.7.2-alpha" />
<PackageReference Include="Voxa.Speech.Groq" />
paket add Voxa.Speech.Groq --version 0.7.2-alpha
#r "nuget: Voxa.Speech.Groq, 0.7.2-alpha"
#:package Voxa.Speech.Groq@0.7.2-alpha
#addin nuget:?package=Voxa.Speech.Groq&version=0.7.2-alpha&prerelease
#tool nuget:?package=Voxa.Speech.Groq&version=0.7.2-alpha&prerelease
Voxa.Speech.Groq
Groq Whisper speech-to-text for the Voxa pipeline.
Groq serves Whisper (whisper-large-v3-turbo by default) on an OpenAI-compatible
/audio/transcriptions API, so this package is a thin descriptor over Voxa's proven
OpenAIWhisperEngine — pointed at Groq's base URL. It implements the same
ISpeechToTextEngine contract every Voxa STT provider does; pair it with the generic
SpeechToTextProcessor from Voxa.Speech.Abstractions.
Use
{
"Voxa": {
"Stt": "Groq",
"Groq": {
"ApiKey": "gsk_...",
"SttModel": "whisper-large-v3-turbo" // optional; also whisper-large-v3
}
}
}
AddVoxa(configuration) registers the Groq descriptor automatically. À la carte:
builder.Services.AddVoxa(builder.Configuration, voxa =>
voxa.AddProvider(GroqSpeechDescriptors.Stt));
| Key | Default | Notes |
|---|---|---|
Voxa:Groq:ApiKey |
— | Required. Sent as Authorization: Bearer. |
Voxa:Groq:SttModel |
whisper-large-v3-turbo |
Any Groq Whisper model. |
Voxa:Groq:ApiBaseUrl |
https://api.groq.com/openai/v1 |
Override for a proxy. |
Voxa:Groq:SttLanguage |
— | Optional BCP-47 hint; omit to auto-detect. |
REST (batch) transcription: audio is buffered per utterance and posted at speech-end (VAD-driven), matching the OpenAI Whisper provider. For ultra-low-latency streaming, use a streaming provider (Deepgram, AssemblyAI, …).
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
- Voxa.Speech.OpenAI (>= 0.7.2-alpha)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Voxa.Speech.Groq:
| 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 | 79 | 7/10/2026 |
| 0.7.0-alpha | 74 | 7/10/2026 |
| 0.6.0-alpha | 77 | 6/22/2026 |