refactor of speech-utils (#123)

This commit is contained in:
Dave Horton
2023-03-14 10:01:05 -04:00
committed by GitHub
parent 3d86292a90
commit aea7388ba0
5 changed files with 1996 additions and 53 deletions
+1 -1
View File
@@ -198,7 +198,7 @@ const testWellSaidTts = async(logger, credentials) => {
const testIbmTts = async(logger, getTtsVoices, credentials) => {
const {tts_api_key, tts_region} = credentials;
const voices = await getTtsVoices({vendor: 'ibm', credentials: {api_key: tts_api_key, region: tts_region}});
const voices = await getTtsVoices({vendor: 'ibm', credentials: {tts_api_key, tts_region}});
return voices;
};