mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +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>
37 lines
928 B
JavaScript
37 lines
928 B
JavaScript
export default {
|
|
id: "api-airforce",
|
|
alias: "af",
|
|
aliases: [
|
|
"airforce",
|
|
],
|
|
uiAlias: "af",
|
|
display: {
|
|
name: "API.airforce",
|
|
icon: "flight",
|
|
color: "#0EA5E9",
|
|
textIcon: "AF",
|
|
website: "https://api.airforce",
|
|
notice: {
|
|
apiKeyUrl: "https://api.airforce",
|
|
},
|
|
},
|
|
category: "freeTier",
|
|
authType: "apikey",
|
|
authModes: [
|
|
"apikey",
|
|
],
|
|
transport: {
|
|
baseUrl: "https://api.airforce/v1/chat/completions",
|
|
validateUrl: "https://api.airforce/v1/models",
|
|
headers: {
|
|
"HTTP-Referer": "https://endpoint-proxy.local",
|
|
"X-Title": "Endpoint Proxy",
|
|
},
|
|
},
|
|
models: [
|
|
{ id: "anthropic/claude-3.7-sonnet", name: "Claude 3.7 Sonnet (Free)", contextLength: 200000 },
|
|
{ id: "moonshot/kimi-k2.6", name: "Kimi K2.6 (Free)", contextLength: 262144 },
|
|
{ id: "google/gemini-2.5-flash", name: "Gemini 2.5 Flash (Free)", contextLength: 1048576 },
|
|
],
|
|
};
|