mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 02:10:15 +01:00
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
const getCustomConfigSpeech = require('./getCustomConfigSpeech');
|
|
const getRealtimeConfig = require('./getRealtimeConfig');
|
|
const TTSService = require('./TTSService');
|
|
const STTService = require('./STTService');
|
|
const getVoices = require('./getVoices');
|
|
|
|
module.exports = {
|
|
getVoices,
|
|
getCustomConfigSpeech,
|
|
getRealtimeConfig,
|
|
...STTService,
|
|
...TTSService,
|
|
};
|