mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Build on the optional Headroom Token Saver from Carmelo Campos
(PR: feat: add optional Headroom token saver). Add managed start/stop
of the local headroom proxy from the dashboard, install detection,
status probing, and a simplified Token Saver UI.
- detect headroom CLI + python>=3.10, probe proxy /health
- spawn/stop proxy as a detached, pid-tracked process
- /api/headroom/{status,start,stop} routes, gated local-only in dashboardGuard
- one-click Start/Stop Headroom modal, no manual config needed
- claude<->openai shape conversion for /v1/compress via 9router translators
Thanks to Carmelo Campos (@carmelogunsroses) for the original Headroom integration.
Co-authored-by: Cursor <cursoragent@cursor.com>
77 lines
2.4 KiB
JavaScript
77 lines
2.4 KiB
JavaScript
import { CLAUDE_API_HEADERS } from "../shared.js";
|
|
|
|
export default {
|
|
id: "minimax-cn",
|
|
priority: 190,
|
|
alias: "minimax-cn",
|
|
display: {
|
|
name: "Minimax (China)",
|
|
icon: "memory",
|
|
color: "#DC2626",
|
|
textIcon: "MC",
|
|
website: "https://www.minimaxi.com",
|
|
notice: {
|
|
apiKeyUrl: "https://platform.minimaxi.com/user-center/basic-information/interface-key",
|
|
},
|
|
},
|
|
category: "apikey",
|
|
transport: {
|
|
baseUrl: "https://api.minimaxi.com/anthropic/v1/messages",
|
|
format: "claude",
|
|
urlSuffix: "?beta=true",
|
|
headers: { ...CLAUDE_API_HEADERS },
|
|
quirks: {
|
|
dropOutputConfig: true,
|
|
},
|
|
reasoningInject: {
|
|
scope: "all",
|
|
},
|
|
auth: {
|
|
combined: true,
|
|
header: "x-api-key",
|
|
scheme: "raw",
|
|
},
|
|
usage: {
|
|
urls: [
|
|
"https://www.minimaxi.com/v1/api/openplatform/coding_plan/remains",
|
|
"https://api.minimaxi.com/v1/api/openplatform/coding_plan/remains",
|
|
],
|
|
},
|
|
},
|
|
// Multi-endpoint: pick the transport matching client sourceFormat to skip translation.
|
|
transports: [
|
|
{
|
|
format: "openai",
|
|
baseUrl: "https://api.minimaxi.com/v1/chat/completions",
|
|
auth: { combined: true, header: "Authorization", scheme: "bearer" },
|
|
},
|
|
{
|
|
format: "claude",
|
|
baseUrl: "https://api.minimaxi.com/anthropic/v1/messages",
|
|
urlSuffix: "?beta=true",
|
|
headers: { ...CLAUDE_API_HEADERS },
|
|
auth: { combined: true, header: "x-api-key", scheme: "raw" },
|
|
},
|
|
],
|
|
models: [
|
|
{ id: "MiniMax-M3", name: "MiniMax M3", targetFormat: "claude" },
|
|
{ id: "MiniMax-M2.7", name: "MiniMax M2.7" },
|
|
{ id: "MiniMax-M2.5", name: "MiniMax M2.5" },
|
|
{ id: "MiniMax-M2.1", name: "MiniMax M2.1" },
|
|
{ id: "speech-2.8-hd", name: "Speech 2.8 HD", kind: "tts" },
|
|
{ id: "speech-2.8-turbo", name: "Speech 2.8 Turbo", kind: "tts" },
|
|
{ id: "speech-2.6-hd", name: "Speech 2.6 HD", kind: "tts" },
|
|
{ id: "speech-2.6-turbo", name: "Speech 2.6 Turbo", kind: "tts" },
|
|
{ id: "speech-02-hd", name: "Speech 02 HD", kind: "tts" },
|
|
{ id: "speech-02-turbo", name: "Speech 02 Turbo", kind: "tts" },
|
|
{ id: "speech-01-hd", name: "Speech 01 HD", kind: "tts" },
|
|
{ id: "speech-01-turbo", name: "Speech 01 Turbo", kind: "tts" },
|
|
],
|
|
serviceKinds: ["llm","tts"],
|
|
ttsConfig: { baseUrl: "https://api.minimaxi.com/v1/t2a_v2", authType: "apikey", authHeader: "bearer", format: "minimax-tts" },
|
|
features: {
|
|
usage: true,
|
|
usageApikey: true,
|
|
},
|
|
};
|