ByteDance-Seed-1.8 是 BytePlus ModelArk 上的深度思考模型,目前处于 beta 阶段,其模型页称它具备更强的多模态理解与智能体能力,并在大量复杂真实任务中表现更优。
- 输入
- 文本 图像 视频 $0.25/M
- 输出
- 文本 $2/M
- 缓存读取
- $0.05/M
- 上下文
- 262K
- 对比 GPT-4o
- 便宜约 95%
价格在同类中的位置
价格在 60 个同类模型中的位置
这条线显示该模型的价格,在 Synthorai 上同类模型里处于什么位置。两端标出了最便宜和最贵的那个。这里是基础价,批量、区域和缓存写入的折扣见价格页。
规格与限制
Token
| 上下文窗口(厂商规格) | 256,000 |
|---|---|
| 最大输出(厂商规格) | 65,536 |
提示词缓存
| 缓存方式 | 自动 + 显式 |
|---|---|
| 最低前缀 | 1,024 |
思考
| 厂商参数 | thinking.type + reasoning_effort |
|---|---|
| 可选值 | thinking.type enabled · disabled (no auto); reasoning_effort minimal · low · medium · high |
| 默认值 | enabled,且 reasoning_effort 为 medium 请求未指定时生效 |
| 可关闭 | 支持 |
| 思考行为 | 思维链通过 reasoning_content 返回;从 seed-1.8 起,它会保留在对话历史中而不被丢弃,并由模型自行决定是否将其重新送入推理 |
| 参数 | reasoning_effort |
| 取值 | minimal · low · medium · high 网关侧参数面——以上方厂商映射为准 |
模型
| 模态 | 文本 + 图像 + 视频 → 文本 |
|---|
- 通用智能体模型(搜索/代码/GUI 智能体能力,原生视觉)
- ModelArk id 为 seed-1-8(版本 seed-1-8-251228,Beta)
- 256K 上下文,64K 最大输出(含 CoT)
- 深度推理 minimal/low/medium/high
- 严格模式函数调用
单个 Prompt —— 通过网关实测
ByteDance Seed 1.8 通过 · 3 sentences
Enabling reasoning capabilities means our LLMs now run multi-step inference chains instead of generating short, direct responses, which doubles the compute resources consumed per query since each step requires processing additional context and intermediate outputs to arrive at a logical conclusion. Additionally, teams across finance, legal, and operations have rapidly adopted these reasoning tools for high-complexity workflows—like automated contract clause analysis and quarterly forecast variance checks—that were previously done manually, leading to a 20% uptick in overall query volume on top of higher per-query costs. While this has temporarily doubled our LLM bill, the time saved on labor-intensive tasks is already reducing overtime costs for senior staff, and we project these efficiency gains will offset the increased LLM expenses and generate net savings by Q4 of this year.
输出 741 tok (+581 思考) 延迟 11.1 s
指令遵循(恰好三句,可数)、受众适配(面向 CFO 的语气),以及下方 token 计量所暴露的隐藏思考计费缺口。
ByteDance Seed 1.8 通过 · 8/8 cases
### Fixed Function ```python def longest_run(xs): if not xs: return 0 best = 1 cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i-1]: cur += 1 best = max(best, cur) else: cur = 1 return best ``` ### Bug Explanation The original function had two critical bugs: 1) It initialized `best` and `cur` to 0, ignoring that any non-empty list has a minimal run length of 1 (causing single-element inputs to return 0 instead of 1). 2) It counted consecutive equal transitions (e.g., for a run of 3 elements, it counted 2 transitions) instead of the actual run length, leading to off-by-one errors for all runs—including those ending at the last index (like [2,2,2] returning 2 instead of 3). […]
输出 2072 tok (+1817 思考) 延迟 26.1 s
修复是否真的正确(可运行)、解释的信息密度,以及在一个边界明确的任务上的 token 效率。
ByteDance Seed 1.8 通过 · 5/5 fields, guidance "withheld pending the Q4 close"
{ "company": "Meridian Robotics", "quarter": "Q3", "revenue_usd_m": 412, "growth_pct": 11, "guidance": "withheld pending the Q4 close" }
输出 757 tok (+695 思考) 延迟 10.6 s
schema 服从度(不臆造字段)、幻觉压力(guidance 明确被暂缓给出),以及结构化输出路径的差异。
ByteDance Seed 1.8 未命中 · 147 words, 0 banned, 1 question
Today, we’re launching a cross-provider prompt caching feature for our API gateway, built to solve key challenges for teams leveraging multiple AI service providers. Many teams reuse standardized prompts across tools but incur unnecessary latency and inflated costs from resubmitting identical requests to different platforms. This feature automatically detects and stores matching prompts across all connected providers in an encrypted, user-configurable cache, cutting redundant API calls by up to 55% and reducing average request latency by 40% for repeated prompts. It supports all major AI providers and integrates with existing gateway workflows, with options to set cache expiration times per prompt category. […]
输出 1146 tok (+970 思考) 延迟 15.2 s
约束服从度(字数预算、禁用词表、唯一的那句问句)、文风指纹,以及长度控制。
30 秒用上 ByteDance Seed 1.8
OpenAI 兼容:换掉 base_url,SDK 不用改。POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="ByteDance-Seed-1.8",
messages=[{"role": "user", "content": "Summarize this diff"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "ByteDance-Seed-1.8",
messages: [{ role: "user", content: "Summarize this diff" }],
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "ByteDance-Seed-1.8",
"messages": [{"role": "user", "content": "Hello"}]
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "ByteDance-Seed-1.8",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("ByteDance-Seed-1.8")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 ByteDance Seed 1.8
- 发布说明还补充了升级的多模态理解和更灵活的上下文管理。
- 它接受文本、图像和视频输入并返回文本,提供 256K 上下文窗口、224K 最大输入、64K 输出(含 32K 思维链预算),另有函数调用、结构化输出和上下文缓存。
- 投产前有两处细节值得先设好:最大输出默认 4K,远低于 64K 上限;thinking.type 默认为 enabled 且没有自动模式,因此如果不想要深度推理,必须显式关闭它。
- 推理深度另由 reasoning_effort 调节,取值 minimal、low、medium 或 high,默认 medium。
- 这一代的头号变化是视觉编码器:四百万像素以内的图像现在只消耗上一版本 44.4% 的 token,高细节输入可达九百万像素,视频帧数上限翻倍到 1,280,不过通过 Files API 上传视频时必须指明该模型,否则仍会使用旧编码器。
- 缓存在前缀和会话两个层级都支持隐式与显式两种形式,上下文编辑可以清除此前的思考或工具调用,批量推理也受支持。
- Synthorai 通过其 OpenAI 兼容网关端点提供该模型。
常见问题
ByteDance Seed 1.8 API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $0.25/M 计算,仅这笔额度就足够对 ByteDance Seed 1.8 发起约 500 次 ~8K token 的请求。
ByteDance Seed 1.8 最擅长什么?
更强的多模态理解与智能体能力、文本、图像、视频输入、256K 上下文,32K 思维链预算。完整能力请见「关于」部分,内容取自厂商官方发布说明。
ByteDance Seed 1.8 的价格是多少?
在 Synthorai 上,ByteDance Seed 1.8 输入 $0.25/百万 token、输出 $2/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.05/M 计费。
ByteDance Seed 1.8 支持提示词缓存(prompt caching)吗?
支持:自动缓存默认开启,另有显式模式可获得确定性折扣。缓存命中的输入 token 按 $0.05/M 计费(未命中 $0.25/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存。 提示词缓存指南 →
如何开通 ByteDance Seed 1.8?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "ByteDance-Seed-1.8" 即可。一把 API key 通用网关上的全部模型。
相关模型
对比
本页每个值都转录自厂商自己的文档(链接见上),并带有核对日期。价格在全目录范围内比较;各厂商定义不同的规格值,只说明差异而不作图表对比。此处没有任何由我们测量的数据,也不做评分。