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>
55 lines
1.0 KiB
JavaScript
55 lines
1.0 KiB
JavaScript
|
|
export default {
|
|
"id": "runwayml",
|
|
"alias": "runwayml",
|
|
display: {
|
|
"name": "Runway ML",
|
|
"icon": "movie",
|
|
"color": "#000000",
|
|
"textIcon": "RW",
|
|
"website": "https://runwayml.com",
|
|
"notice": {
|
|
"apiKeyUrl": "https://dev.runwayml.com"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
uiAlias: "runway",
|
|
authType: "apikey",
|
|
aliases: ["runway"],
|
|
"transport": null,
|
|
media: {
|
|
serviceKinds: ["image"],
|
|
imageConfig: { baseUrl: "https://api.dev.runwayml.com/v1" }
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "gen4_image",
|
|
"name": "Gen-4 Image",
|
|
"type": "image",
|
|
"params": [
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "gen4_image_turbo",
|
|
"name": "Gen-4 Image Turbo",
|
|
"type": "image",
|
|
"params": [
|
|
"size"
|
|
]
|
|
},
|
|
{
|
|
"id": "gen4_turbo",
|
|
"name": "Gen-4 Turbo",
|
|
"type": "video",
|
|
"params": []
|
|
},
|
|
{
|
|
"id": "gen3a_turbo",
|
|
"name": "Gen-3 Alpha Turbo",
|
|
"type": "video",
|
|
"params": []
|
|
}
|
|
]
|
|
};
|