support deeepgram influx (#501)

* support deeepgram influx

* update verb specification
This commit is contained in:
Hoan Luu Huu
2025-10-03 21:09:19 +07:00
committed by GitHub
parent 9421bb8aa1
commit c3d12fafee
5 changed files with 15 additions and 15 deletions

View File

@@ -686,7 +686,7 @@ function decryptCredential(obj, credential, logger, isObscureKey = true) {
obj.deepgram_tts_uri = o.deepgram_tts_uri;
obj.model_id = o.model_id;
}
else if ('deepgramriver' === obj.vendor) {
else if ('deepgramflux' === obj.vendor) {
const o = JSON.parse(decrypt(credential));
obj.api_key = isObscureKey ? obscureKey(o.api_key) : o.api_key;
}