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
+8 -1
View File
@@ -417,4 +417,11 @@ Started: Sun Feb 1 12:22:47 AM CET 2026
- Wraps streaming adapter in `NewStreamingTranscriber(adapter, config.Language)`
- Updated tests: streaming models now succeed (not error)
- Added tests for deepgram and openai-realtime streaming models
- All tests passing with -race flag, typecheck passes
- All tests passing with -race flag, typecheck passes
### Task 43: Add DEEPGRAM_API_KEY env var support
- Added `case "deepgram"` to `resolveAPIKeyForProvider()` in convert.go
- Maps to providerName="deepgram" and envVar="DEEPGRAM_API_KEY"
- Updated config template in save.go with commented deepgram section
- Added "deepgram" to AllProviders and providerDisplayNames in configure.go for TUI
- All tests passing, typecheck passes