LibreChat/api/server/services/Files/Audio/index.js
Marco Beretta 51cd847606
🗣️ refactor: speech services; fix: OpenAI STT (#3431)
* fix: OpenAI STT

* refactor: STT and TTS service, slightly imporve of performance

* fix(DecibelSelector): update default value
2024-07-30 09:18:52 -04:00

11 lines
291 B
JavaScript

const getVoices = require('./getVoices');
const getCustomConfigSpeech = require('./getCustomConfigSpeech');
const TTSService = require('./TTSService');
const STTService = require('./STTService');
module.exports = {
getVoices,
getCustomConfigSpeech,
...STTService,
...TTSService,
};