mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Async video job proxy mirroring the existing image-generation layer split:
Next routes → src/sse/handlers/videoGeneration.js (auth gate, account
fallback loop, refresh persistence) → open-sse/handlers/videoCore.js
(transparent upstream proxy, 401 refresh-once/retry-once, secret sanitization).
- POST /v1/videos/{generations,edits,extensions}: byte-exact body forward
(JSON + multipart), request_id passthrough, Idempotency-Key forwarded
- GET /v1/videos/{request_id}: status/progress/video.url passthrough
- Register grok-imagine-video (kind: "video"); add "video" to MODEL_TYPE_TO_KIND
so video models stay out of chat lists (also fixes runwayml leak)
- 9router xai video CLI: submit → poll → atomic MP4 download
- No auto-retry of creation POSTs (billable jobs); rotate accounts only on
401/403/429; sanitize Bearer tokens + credential values from errors/logs
Closes #1285
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
export default {
|
|
id: "xai",
|
|
priority: 280,
|
|
alias: "xai",
|
|
display: {
|
|
name: "xAI (Grok)",
|
|
icon: "auto_awesome",
|
|
color: "#1DA1F2",
|
|
textIcon: "XA",
|
|
website: "https://x.ai",
|
|
notice: {
|
|
apiKeyUrl: "https://console.x.ai",
|
|
},
|
|
},
|
|
category: "oauth",
|
|
authModes: [
|
|
"oauth",
|
|
"apikey",
|
|
],
|
|
hasOAuth: true,
|
|
transport: {
|
|
baseUrl: "https://api.x.ai/v1/chat/completions",
|
|
validateUrl: "https://api.x.ai/v1/models",
|
|
responsesUrl: "https://api.x.ai/v1/responses",
|
|
clientId: "b1a00492-073a-47ea-816f-4c329264a828",
|
|
tokenUrl: "https://auth.x.ai/oauth2/token",
|
|
refreshUrl: "https://auth.x.ai/oauth2/token",
|
|
},
|
|
models: [
|
|
{ id: "grok-4", name: "Grok 4" },
|
|
{ id: "grok-4-fast-reasoning", name: "Grok 4 Fast Reasoning" },
|
|
{ id: "grok-code-fast-1", name: "Grok Code Fast" },
|
|
{ id: "grok-3", name: "Grok 3" },
|
|
{ id: "grok-2-image-1212", name: "Grok 2 Image", params: ["n","response_format"], kind: "image" },
|
|
{ id: "grok-imagine-video", name: "Grok Imagine Video", params: ["duration","aspect_ratio","resolution"], kind: "video" },
|
|
],
|
|
serviceKinds: ["llm","imageToText","webSearch","image","video"],
|
|
imageConfig: { baseUrl: "https://api.x.ai/v1/images/generations", bodyFields: ["model","prompt","n","response_format"] },
|
|
// Async video jobs (POST returns { request_id }, GET polls until done/failed).
|
|
// Docs: https://docs.x.ai/developers/rest-api-reference/inference/videos
|
|
videoConfig: { baseUrl: "https://api.x.ai/v1/videos" },
|
|
searchViaChat: {
|
|
defaultModel: "grok-4.20-reasoning",
|
|
endpoint: "https://api.x.ai/v1/responses",
|
|
pricingUrl: "https://x.ai/api#pricing",
|
|
},
|
|
};
|