support voxist stt (#1066)

* support voxist stt

* wip
This commit is contained in:
Hoan Luu Huu
2025-02-05 20:33:35 +07:00
committed by GitHub
parent 7105453d81
commit dbdc1cd43d
6 changed files with 71 additions and 0 deletions

View File

@@ -122,6 +122,10 @@ const speechMapper = (cred) => {
const o = JSON.parse(decrypt(credential));
obj.api_key = o.api_key;
}
else if ('voxist' === obj.vendor) {
const o = JSON.parse(decrypt(credential));
obj.api_key = o.api_key;
}
else if ('whisper' === obj.vendor) {
const o = JSON.parse(decrypt(credential));
obj.api_key = o.api_key;