mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Update model lists and context lengths across free/apikey providers, move bazaarlink, kilo-gateway, and kimchi into freeTier, demote llm7 to apikey, and hide bluesminds, sambanova, zed, and mimo-free. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
801 B
JavaScript
28 lines
801 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", contextLength: 200000 },
|
|
{ id: "hunyuan-t1-latest", name: "Hunyuan T1 Latest", contextLength: 256000 },
|
|
],
|
|
};
|