Add Deepgram transcription support#712
Closed
safzanpirani wants to merge 1 commit into
Closed
Conversation
692df88 to
c399444
Compare
Adds Deepgram as a first-class transcription provider alongside the existing command-based transcription. Changes: - Add @deepgram/sdk dependency - Add TranscriptionProvider type (command | deepgram | openai) - Add DeepgramTranscriptionConfig type and zod schema - Create transcription-deepgram.ts with Deepgram SDK integration - Update transcription.ts to route by provider - Support DEEPGRAM_API_KEY env var as fallback Config example: tools.audio.transcription.provider: "deepgram" tools.audio.transcription.deepgram.model: "nova-3" tools.audio.transcription.deepgram.language: "multi"
c399444 to
27fd863
Compare
steipete
reviewed
Jan 17, 2026
| "dependencies": { | ||
| "@buape/carbon": "0.0.0-beta-20260110172854", | ||
| "@clack/prompts": "^0.11.0", | ||
| "@deepgram/sdk": "^4.11.3", |
Contributor
There was a problem hiding this comment.
This is 1MB again - I'll change this toa simple HTTP request.
Contributor
|
Landed on main via: e637bbd, ae67925, 77f7310e0. Summary:
Tests:
|
Contributor
|
Correction: commit 77f7310e0 (refactor: unify media provider options) is currently local-only (main is ahead by 1). Happy to push if you want it on origin/main. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Deepgram as a native transcription provider for voice messages.
Usage:
{ "tools": { "audio": { "transcription": { "provider": "deepgram", "deepgram": { "model": "nova-3", "language": "en" } } } } }Or just set
DEEPGRAM_API_KEYenv var.Tested with Telegram voice messages.