arkaos 2.5.2 → 2.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/config/providers-registry.json +16 -3
- package/package.json +1 -1
- package/pyproject.toml +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.3
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"auth_env": "OPENAI_API_KEY",
|
|
11
11
|
"auth_header": "Authorization: Bearer",
|
|
12
12
|
"models": {
|
|
13
|
-
"
|
|
14
|
-
"
|
|
13
|
+
"whisper-1": { "type": "audio", "description": "Whisper — speech-to-text transcription" },
|
|
14
|
+
"tts-1": { "type": "audio", "description": "TTS — text-to-speech" }
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"replicate": {
|
|
@@ -36,6 +36,17 @@
|
|
|
36
36
|
"fal-ai/runway-gen3/turbo/image-to-video": { "type": "video", "description": "Runway Gen3 Turbo" }
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
+
"gemini": {
|
|
40
|
+
"name": "Google Gemini (Nano Banana)",
|
|
41
|
+
"base_url": "https://generativelanguage.googleapis.com/v1beta",
|
|
42
|
+
"auth_env": "GOOGLE_API_KEY",
|
|
43
|
+
"auth_header": "x-goog-api-key",
|
|
44
|
+
"models": {
|
|
45
|
+
"gemini-3.1-flash-image-preview": { "type": "image", "description": "Nano Banana 2 — fast, high-quality, up to 4K, search grounding" },
|
|
46
|
+
"gemini-3-pro-image-preview": { "type": "image", "description": "Nano Banana Pro — professional assets, thinking mode, up to 4K" },
|
|
47
|
+
"gemini-2.5-flash-image": { "type": "image", "description": "Nano Banana — speed optimized, 1K resolution" }
|
|
48
|
+
}
|
|
49
|
+
},
|
|
39
50
|
"openrouter": {
|
|
40
51
|
"name": "OpenRouter",
|
|
41
52
|
"base_url": "https://openrouter.ai/api/v1",
|
|
@@ -49,7 +60,9 @@
|
|
|
49
60
|
}
|
|
50
61
|
},
|
|
51
62
|
"routing": {
|
|
52
|
-
"image-generation": ["
|
|
63
|
+
"image-generation": ["gemini/gemini-3.1-flash-image-preview", "gemini/gemini-3-pro-image-preview", "gemini/gemini-2.5-flash-image", "fal/fal-ai/flux-pro/v1.1", "replicate/black-forest-labs/flux-1.1-pro"],
|
|
64
|
+
"audio-transcription": ["openai/whisper-1"],
|
|
65
|
+
"text-to-speech": ["openai/tts-1"],
|
|
53
66
|
"video-generation": ["fal/fal-ai/kling-video/v2/master", "fal/fal-ai/runway-gen3/turbo/image-to-video", "replicate/minimax/video-01"],
|
|
54
67
|
"text-completion": ["openrouter/google/gemini-2.5-pro", "openrouter/deepseek/deepseek-r1"]
|
|
55
68
|
}
|
package/package.json
CHANGED