mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
const getVoices = require('./getVoices');
|
|||
const textToSpeech = require('./textToSpeech');
|
|||
const speechToText = require('./speechToText');
|
|||
const { updateTokenWebsocket } = require('./webSocket');
|
|||
|
|||
module.exports = {
|
|||
getVoices,
|
|||
speechToText,
|
|||
...textToSpeech,
|
|||
updateTokenWebsocket,
|
|||
};
|