add deepgram api key env var and config support

This commit is contained in:
leonardotrapani
2026-02-01 02:00:17 +01:00
parent 319a0ef8e2
commit 1865de74ef
5 changed files with 22 additions and 9 deletions
+2 -1
View File
@@ -17,7 +17,7 @@ type ConfigureResult struct {
}
// AllProviders is the list of all supported cloud providers (require API keys)
var AllProviders = []string{"openai", "groq", "mistral", "elevenlabs"}
var AllProviders = []string{"openai", "groq", "mistral", "elevenlabs", "deepgram"}
// LocalProviders is the list of local providers (no API key required)
var LocalProviders = []string{"whisper-cpp"}
@@ -28,6 +28,7 @@ var providerDisplayNames = map[string]string{
"groq": "Groq",
"mistral": "Mistral",
"elevenlabs": "ElevenLabs",
"deepgram": "Deepgram",
"whisper-cpp": "Whisper.cpp (local)",
}