Files
9router/open-sse/handlers/imageProviders/stabilityAi.js
T
decoluaandCursor e53ce79abb refactor(open-sse): B1 consolidate media endpoint URLs into registry
- 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>
2026-06-14 13:58:12 +07:00

36 lines
1.2 KiB
JavaScript

// Stability AI v2 — sync, returns { image: "<b64>" }
import { nowSec, sizeToAspectRatio } from "./_base.js";
import { PROVIDER_MEDIA } from "../../providers/index.js";
const BASE_URL = PROVIDER_MEDIA["stability-ai"]?.imageConfig?.baseUrl;
// Map model id → endpoint segment
function modelToEndpoint(model) {
if (model.includes("ultra")) return "ultra";
if (model.includes("sd3")) return "sd3";
return "core";
}
export default {
buildUrl: (model) => `${BASE_URL}/${modelToEndpoint(model)}`,
buildHeaders: (creds) => {
const key = creds?.apiKey || creds?.accessToken;
return {
"Content-Type": "application/json",
"Authorization": `Bearer ${key}`,
"Accept": "application/json",
};
},
buildBody: (model, body) => {
const req = { prompt: body.prompt, output_format: (body.output_format || "png").toLowerCase() };
if (body.size) req.aspect_ratio = sizeToAspectRatio(body.size);
if (body.style) req.style_preset = body.style;
if (model.includes("sd3")) req.model = model;
return req;
},
normalize: (responseBody) => {
if (responseBody.image) return { created: nowSec(), data: [{ b64_json: responseBody.image }] };
return { created: nowSec(), data: [] };
},
};