mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- image/embed/tts/search base URLs derive from media.*Config.baseUrl / searchViaChat.endpoint (single source); handlers read PROVIDER_MEDIA. - ~18 hardcoded endpoints moved: bfl/fal/stability/runway/hf/gemini/ cloudflare/recraft/sdwebui/comfyui/nanobanana image, voyage embed, gemini/openrouter tts, chatSearch endpoints. - Byte-identical: PROVIDERS 62 + alias 90 baselines, image buildUrl outputs. Co-authored-by: Cursor <cursoragent@cursor.com>
61 lines
1.2 KiB
JavaScript
61 lines
1.2 KiB
JavaScript
|
|
export default {
|
|
"id": "voyage-ai",
|
|
"alias": "voyage-ai",
|
|
display: {
|
|
"name": "Voyage AI",
|
|
"icon": "data_array",
|
|
"color": "#0EA5E9",
|
|
"textIcon": "VG",
|
|
"website": "https://www.voyageai.com",
|
|
"notice": {
|
|
"apiKeyUrl": "https://dash.voyageai.com/api-keys"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
uiAlias: "voyage",
|
|
authType: "apikey",
|
|
"transport": null,
|
|
media: {
|
|
serviceKinds: ["embedding"],
|
|
embeddingConfig: { baseUrl: "https://api.voyageai.com/v1/embeddings" }
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "voyage-3-large",
|
|
"name": "Voyage 3 Large",
|
|
"type": "embedding"
|
|
},
|
|
{
|
|
"id": "voyage-3.5",
|
|
"name": "Voyage 3.5",
|
|
"type": "embedding"
|
|
},
|
|
{
|
|
"id": "voyage-3.5-lite",
|
|
"name": "Voyage 3.5 Lite",
|
|
"type": "embedding"
|
|
},
|
|
{
|
|
"id": "voyage-code-3",
|
|
"name": "Voyage Code 3",
|
|
"type": "embedding"
|
|
},
|
|
{
|
|
"id": "voyage-finance-2",
|
|
"name": "Voyage Finance 2",
|
|
"type": "embedding"
|
|
},
|
|
{
|
|
"id": "voyage-law-2",
|
|
"name": "Voyage Law 2",
|
|
"type": "embedding"
|
|
},
|
|
{
|
|
"id": "voyage-multilingual-2",
|
|
"name": "Voyage Multilingual 2",
|
|
"type": "embedding"
|
|
}
|
|
]
|
|
};
|