elevenlabs new model and options (#267)

This commit is contained in:
Hoan Luu Huu
2023-12-01 02:01:50 +07:00
committed by GitHub
parent 0e056ad296
commit e2d6086f9f
2 changed files with 8 additions and 4 deletions
+1
View File
@@ -395,6 +395,7 @@ function decryptCredential(obj, credential, logger, isObscureKey = true) {
const o = JSON.parse(decrypt(credential));
obj.api_key = isObscureKey ? obscureKey(o.api_key) : o.api_key;
obj.model_id = o.model_id;
obj.options = o.options;
} else if (obj.vendor.startsWith('custom:')) {
const o = JSON.parse(decrypt(credential));
obj.auth_token = isObscureKey ? obscureKey(o.auth_token) : o.auth_token;