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>
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
|
|
export default {
|
|
"id": "fireworks",
|
|
"alias": "fireworks",
|
|
display: {
|
|
"name": "Fireworks AI",
|
|
"icon": "local_fire_department",
|
|
"color": "#7B2EF2",
|
|
"textIcon": "FW",
|
|
"website": "https://fireworks.ai",
|
|
"notice": {
|
|
"apiKeyUrl": "https://fireworks.ai/account/api-keys"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
"transport": {
|
|
"baseUrl": "https://api.fireworks.ai/inference/v1/chat/completions",
|
|
"validateUrl": "https://api.fireworks.ai/inference/v1/models"
|
|
},
|
|
media: {
|
|
embeddingConfig: { baseUrl: "https://api.fireworks.ai/inference/v1/embeddings" }
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "accounts/fireworks/models/deepseek-v3p1",
|
|
"name": "DeepSeek V3.1"
|
|
},
|
|
{
|
|
"id": "accounts/fireworks/models/llama-v3p3-70b-instruct",
|
|
"name": "Llama 3.3 70B"
|
|
},
|
|
{
|
|
"id": "accounts/fireworks/models/qwen3-235b-a22b",
|
|
"name": "Qwen3 235B"
|
|
},
|
|
{
|
|
"id": "nomic-ai/nomic-embed-text-v1.5",
|
|
"name": "Nomic Embed Text v1.5",
|
|
"type": "embedding"
|
|
}
|
|
]
|
|
};
|