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>
80 lines
1.4 KiB
JavaScript
80 lines
1.4 KiB
JavaScript
|
|
export default {
|
|
"id": "black-forest-labs",
|
|
"alias": "black-forest-labs",
|
|
display: {
|
|
"name": "Black Forest Labs",
|
|
"icon": "image",
|
|
"color": "#111827",
|
|
"textIcon": "BF",
|
|
"website": "https://blackforestlabs.ai",
|
|
"notice": {
|
|
"apiKeyUrl": "https://api.bfl.ai"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
uiAlias: "bfl",
|
|
authType: "apikey",
|
|
aliases: ["bfl"],
|
|
"transport": null,
|
|
"models": [
|
|
{
|
|
"id": "flux-pro-1.1",
|
|
"name": "FLUX Pro 1.1",
|
|
"type": "image",
|
|
"params": [
|
|
"n",
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "flux-pro-1.1-ultra",
|
|
"name": "FLUX Pro 1.1 Ultra",
|
|
"type": "image",
|
|
"params": [
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "flux-pro",
|
|
"name": "FLUX Pro",
|
|
"type": "image",
|
|
"params": [
|
|
"n",
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "flux-dev",
|
|
"name": "FLUX Dev",
|
|
"type": "image",
|
|
"params": [
|
|
"n",
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "flux-kontext-pro",
|
|
"name": "FLUX Kontext Pro (Edit)",
|
|
"type": "image",
|
|
"params": [
|
|
"size"
|
|
],
|
|
"capabilities": [
|
|
"edit"
|
|
]
|
|
},
|
|
{
|
|
"id": "flux-kontext-max",
|
|
"name": "FLUX Kontext Max (Edit)",
|
|
"type": "image",
|
|
"params": [
|
|
"size"
|
|
],
|
|
"capabilities": [
|
|
"edit"
|
|
]
|
|
}
|
|
]
|
|
};
|