[PR #5609] [MERGED] Generic OpenAI provider for STT #5495

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

📋 Pull Request Information

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

Base: feat/stt-server-foundation-openaiHead: feat/stt-generic-openai-provider


📝 Commits (6)

  • 4cb4bb2 add generic openai provider for speech-to-text
  • 6e67273 Merge branch 'feat/stt-server-foundation-openai' into feat/stt-generic-openai-provider
  • a9d5f2c add generic-openai STT entries to .env.example
  • f197575 merge upstream
  • b64e0a9 wav conversion
  • 0e50971 remove log

📊 Changes

8 files changed (+173 additions, -3 deletions)

View changed files

📝 docker/.env.example (+5 -0)
frontend/src/components/SpeechToText/GenericOpenAiOptions/index.jsx (+66 -0)
📝 frontend/src/pages/GeneralSettings/AudioPreference/stt.jsx (+10 -0)
📝 server/.env.example (+5 -0)
📝 server/models/systemSettings.js (+5 -0)
📝 server/utils/SpeechToText/index.js (+3 -0)
server/utils/SpeechToText/openAiGeneric/index.js (+58 -0)
📝 server/utils/helpers/updateENV.js (+21 -3)

📄 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 #3885

requires #5612
requires #5610

Description

  • Adds Generic OpenAI STT provider

Visuals (if applicable)

Additional Information

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/5609 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/11/2026 **Status:** ✅ Merged **Merged:** 6/1/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `feat/stt-server-foundation-openai` ← **Head:** `feat/stt-generic-openai-provider` --- ### 📝 Commits (6) - [`4cb4bb2`](https://github.com/Mintplex-Labs/anything-llm/commit/4cb4bb28df5fb7b9cb06e8e1cead8fee62205cee) add generic openai provider for speech-to-text - [`6e67273`](https://github.com/Mintplex-Labs/anything-llm/commit/6e672730d5822dd7ce9aa0d43a0037cc2478489d) Merge branch 'feat/stt-server-foundation-openai' into feat/stt-generic-openai-provider - [`a9d5f2c`](https://github.com/Mintplex-Labs/anything-llm/commit/a9d5f2cacdc5cf3d2512f916ac4b0519ac0bfc39) add generic-openai STT entries to .env.example - [`f197575`](https://github.com/Mintplex-Labs/anything-llm/commit/f1975756cd2d01c300f0d1ecb015324174ae9d7e) merge upstream - [`b64e0a9`](https://github.com/Mintplex-Labs/anything-llm/commit/b64e0a94682472fdc3dad84d38ce09b3c329d8f9) wav conversion - [`0e50971`](https://github.com/Mintplex-Labs/anything-llm/commit/0e5097174bd05b940676cdfa4b336a6c1f0c491c) remove log ### 📊 Changes **8 files changed** (+173 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `docker/.env.example` (+5 -0) ➕ `frontend/src/components/SpeechToText/GenericOpenAiOptions/index.jsx` (+66 -0) 📝 `frontend/src/pages/GeneralSettings/AudioPreference/stt.jsx` (+10 -0) 📝 `server/.env.example` (+5 -0) 📝 `server/models/systemSettings.js` (+5 -0) 📝 `server/utils/SpeechToText/index.js` (+3 -0) ➕ `server/utils/SpeechToText/openAiGeneric/index.js` (+58 -0) 📝 `server/utils/helpers/updateENV.js` (+21 -3) </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 #3885 requires #5612 requires #5610 ### Description <!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? --> - Adds Generic OpenAI 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. --> ### 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:31 -04:00
yindo closed this issue 2026-06-05 15:21:31 -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#5495