[PR #5101] [CLOSED] feat: add CAMB AI as TTS and transcription provider #5299

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5101
Author: @neilruaro-camb
Created: 3/2/2026
Status: Closed

Base: masterHead: feat/camb-ai-tts-transcription


📝 Commits (1)

  • e04b23a feat: add CAMB AI as TTS and transcription provider

📊 Changes

15 files changed (+429 additions, -1 deletions)

View changed files

📝 collector/processSingleFile/convert/asAudio.js (+4 -0)
collector/utils/WhisperProviders/CambAiTranscription.js (+123 -0)
frontend/src/components/TextToSpeech/CambAiOptions/index.jsx (+115 -0)
frontend/src/components/TranscriptionSelection/CambAiOptions/index.jsx (+47 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/index.jsx (+1 -0)
frontend/src/media/transcriptionproviders/cambai.png (+0 -0)
frontend/src/media/ttsproviders/cambai.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/AudioPreference/tts.jsx (+10 -0)
📝 frontend/src/pages/GeneralSettings/TranscriptionPreference/index.jsx (+12 -0)
📝 server/models/systemSettings.js (+6 -0)
server/utils/TextToSpeech/cambAi/index.js (+65 -0)
📝 server/utils/TextToSpeech/index.js (+3 -0)
📝 server/utils/collectorApi/index.js (+1 -0)
📝 server/utils/helpers/customModels.js (+18 -0)
📝 server/utils/helpers/updateENV.js (+24 -1)

📄 Description

Summary

  • Adds CAMB AI as a new TTS provider using MARS speech models (mars-flash, mars-pro, mars-instruct) with 140+ language support
  • Adds CAMB AI as a new transcription provider with async upload/poll/result flow
  • Follows existing ElevenLabs (TTS) and OpenAI Whisper (transcription) patterns exactly

🔄 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/5101 **Author:** [@neilruaro-camb](https://github.com/neilruaro-camb) **Created:** 3/2/2026 **Status:** ❌ Closed **Base:** `master` ← **Head:** `feat/camb-ai-tts-transcription` --- ### 📝 Commits (1) - [`e04b23a`](https://github.com/Mintplex-Labs/anything-llm/commit/e04b23a4c54d4a288c8b776df667ca02b6b234ce) feat: add CAMB AI as TTS and transcription provider ### 📊 Changes **15 files changed** (+429 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `collector/processSingleFile/convert/asAudio.js` (+4 -0) ➕ `collector/utils/WhisperProviders/CambAiTranscription.js` (+123 -0) ➕ `frontend/src/components/TextToSpeech/CambAiOptions/index.jsx` (+115 -0) ➕ `frontend/src/components/TranscriptionSelection/CambAiOptions/index.jsx` (+47 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/index.jsx` (+1 -0) ➕ `frontend/src/media/transcriptionproviders/cambai.png` (+0 -0) ➕ `frontend/src/media/ttsproviders/cambai.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/AudioPreference/tts.jsx` (+10 -0) 📝 `frontend/src/pages/GeneralSettings/TranscriptionPreference/index.jsx` (+12 -0) 📝 `server/models/systemSettings.js` (+6 -0) ➕ `server/utils/TextToSpeech/cambAi/index.js` (+65 -0) 📝 `server/utils/TextToSpeech/index.js` (+3 -0) 📝 `server/utils/collectorApi/index.js` (+1 -0) 📝 `server/utils/helpers/customModels.js` (+18 -0) 📝 `server/utils/helpers/updateENV.js` (+24 -1) </details> ### 📄 Description ## Summary - Adds CAMB AI as a new TTS provider using MARS speech models (mars-flash, mars-pro, mars-instruct) with 140+ language support - Adds CAMB AI as a new transcription provider with async upload/poll/result flow - Follows existing ElevenLabs (TTS) and OpenAI Whisper (transcription) patterns exactly --- <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:20:53 -04:00
yindo closed this issue 2026-06-05 15:20:53 -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#5299