support houndify stt (#1364)

* support houndify stt

* wip

* wip

* wip

* update houndify stt parameters

* wip

* wip
This commit is contained in:
Hoan Luu Huu
2025-10-14 11:55:21 +07:00
committed by GitHub
parent 89c985b564
commit a00703a067
8 changed files with 166 additions and 5 deletions

View File

@@ -142,6 +142,12 @@ const speechMapper = (cred) => {
obj.api_key = o.api_key;
obj.service_version = o.service_version;
}
else if ('houndify' === obj.vendor) {
const o = JSON.parse(decrypt(credential));
obj.client_id = o.client_id;
obj.client_key = o.client_key;
obj.user_id = o.user_id;
}
else if ('voxist' === obj.vendor) {
const o = JSON.parse(decrypt(credential));
obj.api_key = o.api_key;