remove use_streaming from speech credential (#294)

* remove use_streaming from speech credential

* wip
This commit is contained in:
Hoan Luu Huu
2024-02-20 20:01:33 +07:00
committed by GitHub
parent 32b317ae68
commit bd8fb2f9db
2 changed files with 2 additions and 6 deletions
-1
View File
@@ -430,7 +430,6 @@ function decryptCredential(obj, credential, logger, isObscureKey = true) {
obj.api_key = isObscureKey ? obscureKey(o.api_key) : o.api_key;
obj.model_id = o.model_id;
obj.options = o.options;
obj.use_streaming = o.use_streaming;
} else if (obj.vendor.startsWith('custom:')) {
const o = JSON.parse(decrypt(credential));
obj.auth_token = isObscureKey ? obscureKey(o.auth_token) : o.auth_token;