mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +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>
35 lines
630 B
JavaScript
35 lines
630 B
JavaScript
|
|
export default {
|
|
"id": "sdwebui",
|
|
"alias": "sdwebui",
|
|
display: {
|
|
"name": "SD WebUI",
|
|
"icon": "brush",
|
|
"color": "#FF7043",
|
|
"textIcon": "SD",
|
|
"website": "https://github.com/AUTOMATIC1111/stable-diffusion-webui"
|
|
},
|
|
category: "apikey",
|
|
"transport": null,
|
|
"models": [
|
|
{
|
|
"id": "stable-diffusion-v1-5",
|
|
"name": "Stable Diffusion v1.5",
|
|
"type": "image",
|
|
"params": [
|
|
"n",
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "sdxl-base-1.0",
|
|
"name": "SDXL Base 1.0",
|
|
"type": "image",
|
|
"params": [
|
|
"n",
|
|
"size"
|
|
]
|
|
}
|
|
]
|
|
};
|