chat / api /server /services /Files /Audio /index.js
Zhitomir's picture
chat init
aa2e6af
Raw
History Blame Contribute Delete
290 Bytes
const getVoices = require('./getVoices');
const textToSpeech = require('./textToSpeech');
const speechToText = require('./speechToText');
const { updateTokenWebsocket } = require('./webSocket');
module.exports = {
getVoices,
speechToText,
...textToSpeech,
updateTokenWebsocket,
};