mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- image/embed/tts/search base URLs derive from media.*Config.baseUrl / searchViaChat.endpoint (single source); handlers read PROVIDER_MEDIA. - ~18 hardcoded endpoints moved: bfl/fal/stability/runway/hf/gemini/ cloudflare/recraft/sdwebui/comfyui/nanobanana image, voyage embed, gemini/openrouter tts, chatSearch endpoints. - Byte-identical: PROVIDERS 62 + alias 90 baselines, image buildUrl outputs. Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
// OpenAI-compatible adapter (used by openai, minimax, openrouter, recraft)
|
|
import { PROVIDER_MEDIA } from "../../providers/index.js";
|
|
|
|
const imageCfg = (id) => PROVIDER_MEDIA[id]?.imageConfig || {};
|
|
const imageUrl = (id) => imageCfg(id).baseUrl;
|
|
|
|
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,
|
|
};
|
|
}
|