mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 05:31: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>
29 lines
567 B
JavaScript
29 lines
567 B
JavaScript
|
|
export default {
|
|
"id": "opencode",
|
|
"alias": "oc",
|
|
display: {
|
|
"name": "OpenCode Free",
|
|
"icon": "terminal",
|
|
"color": "#E87040",
|
|
"textIcon": "OC"
|
|
},
|
|
category: "free",
|
|
uiAlias: "oc",
|
|
noAuth: true,
|
|
passthroughModels: true,
|
|
"transport": {
|
|
"baseUrl": "https://opencode.ai",
|
|
"headers": {
|
|
"x-opencode-client": "desktop"
|
|
},
|
|
"noAuth": true
|
|
},
|
|
media: {
|
|
noAuth: true,
|
|
passthroughModels: true,
|
|
modelsFetcher: { url: "https://opencode.ai/zen/v1/models", type: "opencode-free" }
|
|
},
|
|
"models": []
|
|
};
|