mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Register 9 new upstream providers with logos and update the auto-generated registry index. Refresh providers/alias baselines and extend the alias token allowlist so verify-alias stays green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
32 lines
973 B
JavaScript
32 lines
973 B
JavaScript
export default {
|
|
id: "tencent",
|
|
alias: "hunyuan",
|
|
aliases: ["hunyuan", "tencent-hunyuan"],
|
|
uiAlias: "hunyuan",
|
|
display: {
|
|
name: "Tencent Hunyuan",
|
|
icon: "cloud",
|
|
color: "#0052D9",
|
|
textIcon: "HY",
|
|
website: "https://cloud.tencent.com/product/hunyuan",
|
|
notice: {
|
|
apiKeyUrl: "https://console.cloud.tencent.com/hunyuan/api-key",
|
|
},
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
authModes: ["apikey"],
|
|
transport: {
|
|
baseUrl: "https://api.hunyuan.cloud.tencent.com/v1/chat/completions",
|
|
validateUrl: "https://api.hunyuan.cloud.tencent.com/v1/models",
|
|
},
|
|
models: [
|
|
{ id: "hunyuan-turbos-latest", name: "Hunyuan TurboS Latest" },
|
|
{ id: "hunyuan-t1-latest", name: "Hunyuan T1 Latest" },
|
|
{ id: "hunyuan-pro", name: "Hunyuan Pro" },
|
|
{ id: "hunyuan-vision", name: "Hunyuan Vision" },
|
|
{ id: "hunyuan-functioncall", name: "Hunyuan FunctionCall" },
|
|
{ id: "hunyuan-lite", name: "Hunyuan Lite" },
|
|
],
|
|
};
|