mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
Adapted from PR #1286 (mugnimaestra/feat/xai-grok-provider) to match existing app architecture. Includes: - OAuth 2.0 with PKCE on loopback port 56121 (Grok Build) - API key auth path (console.x.ai) - Token refresh wiring (open-sse + sse tokenRefresh) - Dashboard OAuth modal with fixed-port flow + manual code fallback - Provider registry entries (OAuth + API key) - xAI image generation via OpenAI-compatible adapter (grok-2-image-1212 model, no size/quality/style params) Excludes (intentionally, to match app patterns): - Custom xAI Responses executor (DefaultExecutor handles /chat/completions) - xAI-specific translators (app uses OpenAI as intermediate format) - Image edits (not supported by current imageGenerationCore) - Video endpoints (app has no video subsystem yet) - CLI xai-login command Refs decolua#1286 Co-authored-by: Cursor <cursoragent@cursor.com>
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
// Image provider adapter registry
|
|
import createOpenAIAdapter from "./openai.js";
|
|
import gemini from "./gemini.js";
|
|
import codex from "./codex.js";
|
|
import sdwebui from "./sdwebui.js";
|
|
import comfyui from "./comfyui.js";
|
|
import huggingface from "./huggingface.js";
|
|
import nanobanana from "./nanobanana.js";
|
|
import falAi from "./falAi.js";
|
|
import stabilityAi from "./stabilityAi.js";
|
|
import blackForestLabs from "./blackForestLabs.js";
|
|
import runwayml from "./runwayml.js";
|
|
import cloudflareAi from "./cloudflareAi.js";
|
|
|
|
const ADAPTERS = {
|
|
openai: createOpenAIAdapter("openai"),
|
|
minimax: createOpenAIAdapter("minimax"),
|
|
openrouter: createOpenAIAdapter("openrouter"),
|
|
recraft: createOpenAIAdapter("recraft"),
|
|
xai: createOpenAIAdapter("xai"),
|
|
gemini,
|
|
codex,
|
|
sdwebui,
|
|
comfyui,
|
|
huggingface,
|
|
nanobanana,
|
|
"fal-ai": falAi,
|
|
"stability-ai": stabilityAi,
|
|
"black-forest-labs": blackForestLabs,
|
|
runwayml,
|
|
"cloudflare-ai": cloudflareAi,
|
|
};
|
|
|
|
export function getImageAdapter(provider) {
|
|
return ADAPTERS[provider] || null;
|
|
}
|
|
|
|
export function isImageProvider(provider) {
|
|
return provider in ADAPTERS;
|
|
}
|