mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- Single-source registry: oauth clientId/tokenUrl, usage URLs, image/embed configs, search defaultModel, codex fixedPort, google token url derive. - Remove 29 unused OmniRoute providers (registry 100→71); media intact. - De-adhoc: codex literals → registry format/oauth flags; reasoningInject, image/embed openrouter headers + xai bodyFields config-driven. - Add REGISTRY_TEMPLATE.js + expand PROVIDER_DEFAULTS/schema JSDoc. - Baselines updated; PROVIDERS 62 + alias 90 byte-for-byte, golden snapshots. Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
1.5 KiB
JavaScript
39 lines
1.5 KiB
JavaScript
// OpenAI-compatible adapter (used by openai, minimax, openrouter, recraft)
|
|
import { PROVIDER_MEDIA } from "../../providers/index.js";
|
|
|
|
// media-only providers without a registry file keep their URL here; rest derive from registry media.imageConfig.baseUrl
|
|
const ENDPOINTS = {
|
|
recraft: "https://external.api.recraft.ai/v1/images/generations",
|
|
};
|
|
|
|
const imageCfg = (id) => PROVIDER_MEDIA[id]?.imageConfig || {};
|
|
const imageUrl = (id) => imageCfg(id).baseUrl || ENDPOINTS[id];
|
|
|
|
export default function createOpenAIAdapter(providerId) {
|
|
const cfg = imageCfg(providerId);
|
|
return {
|
|
buildUrl: () => imageUrl(providerId),
|
|
buildHeaders: (creds) => {
|
|
const headers = { "Content-Type": "application/json", ...(cfg.headers || {}) };
|
|
const key = creds?.apiKey || creds?.accessToken;
|
|
if (key) headers["Authorization"] = `Bearer ${key}`;
|
|
return headers;
|
|
},
|
|
buildBody: (model, body) => {
|
|
const { prompt, n = 1, size = "1024x1024", quality, style, response_format } = body;
|
|
const full = { model, prompt, n, size };
|
|
if (quality) full.quality = quality;
|
|
if (style) full.style = style;
|
|
if (response_format) full.response_format = response_format;
|
|
// bodyFields whitelist (e.g. xAI accepts only model/prompt/n/response_format)
|
|
if (Array.isArray(cfg.bodyFields)) {
|
|
const req = {};
|
|
for (const f of cfg.bodyFields) if (full[f] !== undefined) req[f] = full[f];
|
|
return req;
|
|
}
|
|
return full;
|
|
},
|
|
normalize: (responseBody) => responseBody,
|
|
};
|
|
}
|