[PR #5612] [MERGED] Deepgram provider for STT #5496

Closed
opened 2026-06-05 15:21:32 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5612
Author: @shatfield4
Created: 5/11/2026
Status: Merged
Merged: 5/29/2026
Merged by: @timothycarambat

Base: feat/stt-server-foundation-openaiHead: feat/stt-deepgram-provider


📝 Commits (7)

  • 985945f add deepgram provider for speech-to-text
  • 64ac4c4 Merge branch 'feat/stt-server-foundation-openai' into feat/stt-deepgram-provider
  • 321cacd add deepgram STT entries to .env.example
  • 53035d1 add comment to clarify successful api key usage
  • 71d4905 revert unintentional embed submodule change
  • 91d540a resize deepgram.png to 300x300
  • baa44b5 filter lots of dupe models from picker

📊 Changes

10 files changed (+242 additions, -1 deletions)

View changed files

📝 docker/.env.example (+4 -0)
frontend/src/components/SpeechToText/DeepgramOptions/index.jsx (+89 -0)
frontend/src/media/ttsproviders/deepgram.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/AudioPreference/stt.jsx (+9 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+4 -0)
server/utils/SpeechToText/deepgram/index.js (+71 -0)
📝 server/utils/SpeechToText/index.js (+3 -0)
📝 server/utils/helpers/customModels.js (+47 -0)
📝 server/utils/helpers/updateENV.js (+11 -1)

📄 Description

Pull Request Type

  • feat (New feature)
  • 🐛 fix (Bug fix)
  • ♻️ refactor (Code refactoring without changing behavior)
  • 💄 style (UI style changes)
  • 🔨 chore (Build, CI, maintenance)
  • 📝 docs (Documentation updates)

Relevant Issues

resolves #4732
connect #5609
closes #5456

Description

  • Adds Deepgram STT provider

Visuals (if applicable)

Additional Information

  • You can get a free API key from Deepgram to test this

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated (if applicable)
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/5612 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/11/2026 **Status:** ✅ Merged **Merged:** 5/29/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `feat/stt-server-foundation-openai` ← **Head:** `feat/stt-deepgram-provider` --- ### 📝 Commits (7) - [`985945f`](https://github.com/Mintplex-Labs/anything-llm/commit/985945fc0053def91d1b67cde178b2b892923a6a) add deepgram provider for speech-to-text - [`64ac4c4`](https://github.com/Mintplex-Labs/anything-llm/commit/64ac4c4e0a6f271b73102197c18a984b62b132f3) Merge branch 'feat/stt-server-foundation-openai' into feat/stt-deepgram-provider - [`321cacd`](https://github.com/Mintplex-Labs/anything-llm/commit/321cacdccb69555a64d4013d61f79631649b448d) add deepgram STT entries to .env.example - [`53035d1`](https://github.com/Mintplex-Labs/anything-llm/commit/53035d13ae96f39176dee081bd10880baa0a7883) add comment to clarify successful api key usage - [`71d4905`](https://github.com/Mintplex-Labs/anything-llm/commit/71d4905f8311c48f16030caca0f3113d27601867) revert unintentional embed submodule change - [`91d540a`](https://github.com/Mintplex-Labs/anything-llm/commit/91d540a0cab173be5f2cedc155ed7997113b56fb) resize deepgram.png to 300x300 - [`baa44b5`](https://github.com/Mintplex-Labs/anything-llm/commit/baa44b5470490f3e535b032a6dc9d32fccaaf45b) filter lots of dupe models from picker ### 📊 Changes **10 files changed** (+242 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/SpeechToText/DeepgramOptions/index.jsx` (+89 -0) ➕ `frontend/src/media/ttsproviders/deepgram.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/AudioPreference/stt.jsx` (+9 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+4 -0) ➕ `server/utils/SpeechToText/deepgram/index.js` (+71 -0) 📝 `server/utils/SpeechToText/index.js` (+3 -0) 📝 `server/utils/helpers/customModels.js` (+47 -0) 📝 `server/utils/helpers/updateENV.js` (+11 -1) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat (New feature) - [ ] 🐛 fix (Bug fix) - [ ] ♻️ refactor (Code refactoring without changing behavior) - [ ] 💄 style (UI style changes) - [ ] 🔨 chore (Build, CI, maintenance) - [ ] 📝 docs (Documentation updates) ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #4732 connect #5609 closes #5456 ### Description <!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? --> - Adds Deepgram STT provider ### Visuals (if applicable) <!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> - You can get a free API key from Deepgram to test this ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated (if applicable) - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 15:21:32 -04:00
yindo closed this issue 2026-06-05 15:21:32 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#5496