mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
* fix: OpenAI STT * refactor: STT and TTS service, slightly imporve of performance * fix(DecibelSelector): update default value
11 lines
291 B
JavaScript
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,
|
|
};
|