fix(api): tongyi credential compatibility (#37942)

This commit is contained in:
林玮 (Jade Lin) 2026-06-25 18:25:24 +08:00 committed by GitHub
parent 48dfbd60d6
commit aa37c1d833
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -240,7 +240,8 @@ class HostingConfiguration:
if len(quotas) > 0:
credentials = {
"dashscope_api_key": dify_config.HOSTED_TONGYI_API_KEY,
"use_international_endpoint": dify_config.HOSTED_TONGYI_USE_INTERNATIONAL_ENDPOINT,
# SNP-494: keep temporary compatibility with tongyi plugin string credential checks.
"use_international_endpoint": str(dify_config.HOSTED_TONGYI_USE_INTERNATIONAL_ENDPOINT).lower(),
}
return HostingProvider(enabled=True, credentials=credentials, quota_unit=quota_unit, quotas=quotas)