🗣️ refactor: speech services; fix: OpenAI STT (#3431)

* fix: OpenAI STT

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

* fix(DecibelSelector): update default value
This commit is contained in:
Marco Beretta 2024-07-30 09:18:52 -04:00 committed by GitHub
parent 4ffdefc2a8
commit 51cd847606
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 737 additions and 714 deletions

View file

@ -1,11 +1,11 @@
const getVoices = require('./getVoices');
const getCustomConfigSpeech = require('./getCustomConfigSpeech');
const textToSpeech = require('./textToSpeech');
const speechToText = require('./speechToText');
const TTSService = require('./TTSService');
const STTService = require('./STTService');
module.exports = {
getVoices,
getCustomConfigSpeech,
speechToText,
...textToSpeech,
...STTService,
...TTSService,
};