|
| 1 | +import type { ModelDefinition } from "@/models.js"; |
| 2 | + |
| 3 | +export const bytedanceModels = [ |
| 4 | + { |
| 5 | + id: "seed-1-6-250615", |
| 6 | + name: "Seed 1.6 (250615)", |
| 7 | + description: |
| 8 | + "ByteDance Seed 1.6 vision model with thinking/non-thinking modes, multimodal inputs, and 256K context window", |
| 9 | + family: "bytedance", |
| 10 | + releasedAt: new Date("2025-06-15"), |
| 11 | + publishedAt: new Date("2026-01-12"), |
| 12 | + providers: [ |
| 13 | + { |
| 14 | + providerId: "bytedance", |
| 15 | + modelName: "seed-1-6-250615", |
| 16 | + inputPrice: 0.00025 / 1000, |
| 17 | + outputPrice: 0.002 / 1000, |
| 18 | + cachedInputPrice: 0.00005 / 1000, |
| 19 | + requestPrice: 0, |
| 20 | + contextSize: 256000, |
| 21 | + maxOutput: undefined, |
| 22 | + streaming: true, |
| 23 | + reasoning: true, |
| 24 | + vision: true, |
| 25 | + tools: true, |
| 26 | + jsonOutput: true, |
| 27 | + }, |
| 28 | + ], |
| 29 | + }, |
| 30 | + { |
| 31 | + id: "seed-1-6-250915", |
| 32 | + name: "Seed 1.6 (250915)", |
| 33 | + description: |
| 34 | + "ByteDance Seed 1.6 vision model released September 15, 2025 with thinking/non-thinking modes and multimodal inputs", |
| 35 | + family: "bytedance", |
| 36 | + releasedAt: new Date("2025-09-15"), |
| 37 | + publishedAt: new Date("2026-01-13"), |
| 38 | + providers: [ |
| 39 | + { |
| 40 | + providerId: "bytedance", |
| 41 | + modelName: "seed-1-6-250915", |
| 42 | + inputPrice: 0.00025 / 1000, |
| 43 | + cachedInputPrice: 0.00005 / 1000, |
| 44 | + outputPrice: 0.002 / 1000, |
| 45 | + requestPrice: 0, |
| 46 | + contextSize: 256000, |
| 47 | + maxOutput: undefined, |
| 48 | + streaming: true, |
| 49 | + reasoning: true, |
| 50 | + vision: true, |
| 51 | + tools: true, |
| 52 | + jsonOutput: true, |
| 53 | + }, |
| 54 | + ], |
| 55 | + }, |
| 56 | + { |
| 57 | + id: "seed-1-6-flash-250715", |
| 58 | + name: "Seed 1.6 Flash (250715)", |
| 59 | + description: |
| 60 | + "ByteDance Seed 1.6 Flash - faster, cost-effective vision model released July 15, 2025", |
| 61 | + family: "bytedance", |
| 62 | + releasedAt: new Date("2025-07-15"), |
| 63 | + publishedAt: new Date("2026-01-13"), |
| 64 | + providers: [ |
| 65 | + { |
| 66 | + providerId: "bytedance", |
| 67 | + modelName: "seed-1-6-flash-250715", |
| 68 | + inputPrice: 0.00007 / 1000, |
| 69 | + cachedInputPrice: 0.000015 / 1000, |
| 70 | + outputPrice: 0.0003 / 1000, |
| 71 | + requestPrice: 0, |
| 72 | + contextSize: 256000, |
| 73 | + maxOutput: undefined, |
| 74 | + streaming: true, |
| 75 | + reasoning: true, |
| 76 | + vision: true, |
| 77 | + tools: true, |
| 78 | + jsonOutput: true, |
| 79 | + }, |
| 80 | + ], |
| 81 | + }, |
| 82 | + { |
| 83 | + id: "seed-1-8-251228", |
| 84 | + name: "Seed 1.8 (251228)", |
| 85 | + description: |
| 86 | + "ByteDance Seed 1.8 advanced vision model released December 28, 2025 with enhanced capabilities", |
| 87 | + family: "bytedance", |
| 88 | + releasedAt: new Date("2025-12-28"), |
| 89 | + publishedAt: new Date("2026-01-13"), |
| 90 | + providers: [ |
| 91 | + { |
| 92 | + providerId: "bytedance", |
| 93 | + modelName: "seed-1-8-251228", |
| 94 | + inputPrice: 0.00025 / 1000, |
| 95 | + cachedInputPrice: 0.00005 / 1000, |
| 96 | + outputPrice: 0.002 / 1000, |
| 97 | + requestPrice: 0, |
| 98 | + contextSize: 256000, |
| 99 | + maxOutput: undefined, |
| 100 | + streaming: true, |
| 101 | + reasoning: true, |
| 102 | + vision: true, |
| 103 | + tools: true, |
| 104 | + jsonOutput: true, |
| 105 | + }, |
| 106 | + ], |
| 107 | + }, |
| 108 | +] as const satisfies ModelDefinition[]; |
0 commit comments