|
3 | 3 | * auto-route, shared by core's default config, server's initial config, and web/cli display. |
4 | 4 | * Data verified as of 2026-07-10 (Qwen Token Plan entries: 2026-07-20; MiniMax: 2026-08-03; |
5 | 5 | * DeepSeek, Gemini 3.7, GLM-5.3 and the whole OpenAI line-up (direct + OpenRouter): |
6 | | - * 2026-08-18; the direct Anthropic group: 2026-08-20 — per each provider's docs). |
| 6 | + * 2026-08-18; the direct Anthropic group: 2026-08-20; the DeepSeek V4 Flash Vision Exp rows: |
| 7 | + * 2026-08-21 — per each provider's docs). |
7 | 8 | * Docs: packages/docs/content/models.{zh,en}.md (site path /docs/models) documents the |
8 | 9 | * provider groups and credential resolution described here. |
9 | 10 | * |
@@ -247,6 +248,16 @@ export const MODEL_CATALOG: ModelCatalogEntry[] = [ |
247 | 248 | pricing: cny(0.05, 1.5, 4.5), |
248 | 249 | supportsVision: false, |
249 | 250 | }, |
| 251 | + { |
| 252 | + // The experimental vision revision of V4 Flash (added 2026-08-21): image input on top of |
| 253 | + // the base model's text capabilities, at the same published price. |
| 254 | + modelId: "deepseek-v4-flash-vision-exp", |
| 255 | + displayName: "DeepSeek V4 Flash Vision Exp", |
| 256 | + provider: "deepseek", |
| 257 | + contextWindow: 1000000, |
| 258 | + pricing: cny(0.05, 1.5, 4.5), |
| 259 | + supportsVision: true, |
| 260 | + }, |
250 | 261 | { |
251 | 262 | modelId: "deepseek-v4-pro", |
252 | 263 | displayName: "DeepSeek V4 Pro", |
@@ -358,6 +369,20 @@ export const MODEL_CATALOG: ModelCatalogEntry[] = [ |
358 | 369 | clientType: "openai-chat", |
359 | 370 | baseUrl: OPENROUTER_BASE_URL, |
360 | 371 | }, |
| 372 | + { |
| 373 | + // DeepSeek serves this one alone on OpenRouter, so the stored rates are its own published |
| 374 | + // USD list ($0.22 / $0.66 / $0.007 cache read), and the context window is that endpoint's |
| 375 | + // 1,048,576. Like the direct group, the price is the OFF-PEAK tier: the models API exposes |
| 376 | + // the peak windows as `pricing.overrides` billing exactly double. |
| 377 | + modelId: "deepseek/deepseek-v4-flash-vision-exp", |
| 378 | + displayName: "DeepSeek V4 Flash Vision Exp", |
| 379 | + provider: "openrouter", |
| 380 | + contextWindow: 1048576, |
| 381 | + pricing: usd(0.007, 0.22, 0.66), |
| 382 | + supportsVision: true, |
| 383 | + clientType: "openai-chat", |
| 384 | + baseUrl: OPENROUTER_BASE_URL, |
| 385 | + }, |
361 | 386 | { |
362 | 387 | // The 0813 general-availability release of DeepSeek V4 Pro (OpenRouter listing dated |
363 | 388 | // 2026-08-12); the default routed endpoint is DeepSeek's own API, so the price matches |
|
0 commit comments