- 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>
36 lines
839 B
JavaScript
36 lines
839 B
JavaScript
|
|
export default {
|
|
"id": "nebius",
|
|
"alias": "nebius",
|
|
display: {
|
|
"name": "Nebius AI",
|
|
"icon": "cloud",
|
|
"color": "#6C5CE7",
|
|
"textIcon": "NB",
|
|
"website": "https://nebius.com",
|
|
"notice": {
|
|
"apiKeyUrl": "https://studio.nebius.com/settings/api-keys"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
"transport": {
|
|
"baseUrl": "https://api.studio.nebius.ai/v1/chat/completions",
|
|
"validateUrl": "https://api.studio.nebius.ai/v1/models"
|
|
},
|
|
media: {
|
|
embeddingConfig: { baseUrl: "https://api.tokenfactory.nebius.com/v1/embeddings" }
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "meta-llama/Llama-3.3-70B-Instruct",
|
|
"name": "Llama 3.3 70B Instruct"
|
|
},
|
|
{
|
|
"id": "Qwen/Qwen3-Embedding-8B",
|
|
"name": "Qwen3 Embedding 8B",
|
|
"type": "embedding"
|
|
}
|
|
]
|
|
};
|