Files
9router/open-sse/handlers/imageProviders/comfyui.js
2026-05-04 11:29:02 +07:00

9 lines
326 B
JavaScript

// ComfyUI — local, noAuth (placeholder; full graph workflow not implemented)
export default {
noAuth: true,
buildUrl: () => "http://localhost:8188",
buildHeaders: () => ({ "Content-Type": "application/json" }),
buildBody: (_model, body) => ({ prompt: body.prompt }),
normalize: (responseBody) => responseBody,
};