🎵 feat: Cumulative Transcription Support for External STT (#9318)

* 🔧 fix: TTS and STT Services to use AppConfig

- Updated `getProviderSchema` and `getProvider` methods to accept an optional `appConfig` parameter, allowing for more flexible configuration retrieval.
- Improved error handling by ensuring that the app configuration is checked before accessing TTS and STT schemas.
- Refactored `processTextToSpeech` and `streamAudio` methods to utilize the new `appConfig` parameter for better clarity and maintainability.

* feat: Cumulative Transcription Support for STT External

* style: fix medium-sized styling for admin settings dialogs
This commit is contained in:
Danny Avila 2025-08-27 18:56:04 -04:00 committed by GitHub
parent c3e88b97c8
commit 15d7a3d221
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 58 additions and 30 deletions

View file

@ -109,9 +109,11 @@ class STTService {
* @throws {Error} If no STT schema is set, multiple providers are set, or no provider is set.
*/
async getProviderSchema(req) {
const appConfig = await getAppConfig({
role: req?.user?.role,
});
const appConfig =
req.config ??
(await getAppConfig({
role: req?.user?.role,
}));
const sttSchema = appConfig?.speech?.stt;
if (!sttSchema) {
throw new Error(