mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
export default {
|
|
id: "iflow",
|
|
hidden: true,
|
|
priority: 110,
|
|
alias: "if",
|
|
display: {
|
|
name: "iFlow AI",
|
|
icon: "water_drop",
|
|
color: "#6366F1",
|
|
website: "https://iflow.cn",
|
|
notice: {
|
|
signupUrl: "https://iflow.cn",
|
|
},
|
|
},
|
|
category: "oauth",
|
|
transport: {
|
|
baseUrl: "https://apis.iflow.cn/v1/chat/completions",
|
|
thinkingFormat: "openai",
|
|
headers: {
|
|
"User-Agent": "iFlow-Cli",
|
|
},
|
|
},
|
|
models: [
|
|
{ id: "qwen3-coder-plus", name: "Qwen3 Coder Plus" },
|
|
{ id: "qwen3-max", name: "Qwen3 Max" },
|
|
{ id: "qwen3-vl-plus", name: "Qwen3 VL Plus" },
|
|
{ id: "qwen3-max-preview", name: "Qwen3 Max Preview" },
|
|
{ id: "qwen3-235b", name: "Qwen3 235B A22B" },
|
|
{ id: "qwen3-235b-a22b-instruct", name: "Qwen3 235B A22B Instruct" },
|
|
{ id: "qwen3-235b-a22b-thinking-2507", name: "Qwen3 235B A22B Thinking" },
|
|
{ id: "qwen3-32b", name: "Qwen3 32B" },
|
|
{ id: "kimi-k2", name: "Kimi K2" },
|
|
{ id: "deepseek-v3.2", name: "DeepSeek V3.2 Exp" },
|
|
{ id: "deepseek-v3.1", name: "DeepSeek V3.1 Terminus" },
|
|
{ id: "deepseek-v3", name: "DeepSeek V3 671B" },
|
|
{ id: "deepseek-r1", name: "DeepSeek R1" },
|
|
{ id: "glm-4.7", name: "GLM 4.7" },
|
|
{ id: "iflow-rome-30ba3b", name: "iFlow ROME" },
|
|
],
|
|
oauth: {
|
|
clientId: "10009311001",
|
|
clientSecret: "4Z3YjXycVsQvyGF1etiNlIBB4RsqSDtW",
|
|
authorizeUrl: "https://iflow.cn/oauth",
|
|
tokenUrl: "https://iflow.cn/oauth/token",
|
|
userInfoUrl: "https://iflow.cn/api/oauth/getUserInfo",
|
|
extraParams: {
|
|
loginMethod: "phone",
|
|
type: "phone",
|
|
},
|
|
refreshLeadMs: 86400000,
|
|
},
|
|
};
|