Seedream / SeedEdit(字节)
1. 介绍
1.1 平台概况
Seedream 与 SeedEdit 由字节跳动 Seed 团队研发,是字节在视觉多模态生成方向的自研模型线。Seedream 负责图像生成,SeedEdit 负责图像编辑;自 Seedream 5.0 起,两者被整合进同一架构联合训练。
在 AI Harness 六层能力模型中,Seedream 代表"国产大厂模型即服务"路线:模型能力由大厂自研并深度内嵌自有生态(剪映、CapCut、小云雀、豆包、即梦),同时通过火山引擎以 API 形式对外输出。它的 L1(上下文工程)在本组中属最强一档——把提示词、参考图、结构信号、外部知识与推理链五类上下文统一编排;但它的 L4(记忆与状态)与 L6(治理与安全)则呈现明显的"载体层与模型层断层",这是本篇最需要写透的问题。
| 项 | 内容 | 置信度 |
|---|---|---|
| 研发团队 | 字节跳动 Seed 团队(视觉多模态生成) | 中 |
| 模型线 | Seedream(图像生成)+ SeedEdit(图像编辑) | 高 |
| 当前版本 | Seedream 5.0 / 5.0 Lite | 中高 |
| 商业化路径 | 字节生态内嵌 + 火山引擎 API + 第三方聚合平台 | 中高 |
| 技术路线 | 统一 DiT + 新型高压缩 VAE;生成与编辑联合训练 | 高(官方技术页) |
| 团队变动 | 负责人经历变动:杨建朝休假、冯佳时离职,后由周畅接管(2024 年从阿里加入字节) | 中(百科) |
1.2 版本沿革与发布时间线
| 时间 | 节点 | 说明 | 置信度 |
|---|---|---|---|
| — | Seedream 3.0 / SeedEdit 3.0 | 早期版本 | 中 |
| — | Seedream 4.0 | 高质量与高效平衡,推理效率大幅优化 | 中高 |
| 2026-02-10 | Seedream 5.0 正式上线 | 在剪映、CapCut、小云雀正式上线;即梦 AI 灰度测试 | 中高 |
| 2026-02-13 | Seedream 5.0 Lite | 接入即梦 AI | 中高 |
| 2026-02 | 即梦接入 Seedance 2.0 | 视频侧同步升级;同为字节 Seed 团队 | 中高 |
需要说明的是,Seedream 的"版本"与"上线"是两个不同概念:版本号由模型团队定义,上线时间由各载体(剪映、CapCut、小云雀、即梦)分别执行,因此存在"模型已发布但某载体仍在灰度"的错配。这是多载体分发模型的典型现象,选型时应以实际调用的 API 版本号为准。
1.3 定价与开放形态
火山引擎官方计价(极高置信)
| 能力 | 计费方式 | 价格(元) |
|---|---|---|
| 即梦 AI-图片生成 4.0 / 4.6 | 按生成张数(单次有概率出多张) | 0.22 元/张 |
| 3.0 系列(文生图 3.0 / 3.1、图生图 3.0 智能参考、AI 营销商品图 3.0) | 按调用次数(单次出图 1 张) | 0.2 元/图 |
| 交互编辑 inpainting | 按调用次数 | 0.2 元/次 |
| 智能超清 | 按调用次数 | 0.4 元/次 |
| 并发扩充 | 按并发数 | 500 元/日/并发;10,000 元/月/并发 |
| 免费额度 | — | 体验 200 次,并发 1 |
| 欠费策略 | — | 欠费后 2 小时内可用;24 小时未补缴释放资源 |
第三方平台报价(低—中置信,仅供横向参考)
| 渠道 | 报价 | 置信度 |
|---|---|---|
| 第三方 API 文档(flaq.ai) | Seedream 5.0 / 5.0 Edit 支持 2K/4K、7 种宽高比(16:9、9:16、4:3、3:4、3:2、2:3、1:1);Edit 支持 1~10 张图像输入 | 中 |
| arteza.ai | Seedream 5.0 Edit 约 1 credit ≈ $0.10/次编辑,5~15 秒返回,套餐 $5/月起 | 低—中 |
| Runway 平台内 | seedream5_lite 4 credits;seedream5_pro 5 credits(1K)/ 9 credits(2K) | 中高 |
需要提示的成本结构特点:并发是需要单独付费的维度(500 元/日/并发或 10,000 元/月/并发),且默认免费额度下并发仅为 1。对批量生产场景,并发成本可能显著高于按张计费本身,必须在预算中单列。
2. 名词解释
2.1 AI 图像通用术语
| 术语 | 英文 / 缩写 | 释义 |
|---|---|---|
| 文生图 | Text-to-Image(T2I) | 仅由文本提示词生成图像 |
| 图生图 | Image-to-Image(I2I) | 以一张或多张图像为条件生成新图像 |
| 局部重绘 | Inpainting | 对图像指定区域重新生成,区域外保持不变 |
| 外扩 | Outpainting | 在画布外扩区域继续生成 |
| 潜在扩散 | Latent Diffusion / DiT | 在压缩潜空间中做扩散;DiT 用 Transformer 取代 UNet |
| 变分自编码器 | VAE | 图像与潜空间之间的编解码器;高压缩 VAE 可降低计算量 |
| 思维链 | CoT(Chain-of-Thought) | 模型在输出前进行多步推理;Seedream 5.0 搭载 CoT 推理 |
| 检索增强生成 | RAG | 生成前检索外部知识并纳入上下文;Seedream 5.0 支持实时联网检索生图 |
| 视觉语言模型 | VLM | 同时理解图像与文本的多模态模型;Seedream 用微调后的 SeedVLM 扩展提示词 |
| 随机种子 | Seed | 固定后可在同参数下复现同一张图的随机初始噪声编号 |
2.2 Seedream / SeedEdit 特有术语
| 术语 | 英文 / 缩写 | 释义 |
|---|---|---|
| 统一生成与编辑架构 | Unified Generation & Editing | Seedream 5.0 把文生图与 SeedEdit 图像编辑整合进同一架构联合训练,提升复杂任务泛化 |
| 视觉信号控制 | Visual Signal Control | 原生集成 Canny / Depth / Mask 等视觉信号,无需额外模型;用户可用草图、涂鸦、辅助线引导生成 |
| 上下文推理生成 | In-Context Reasoning | 生成范式从"执行指令"扩展到"上下文推理":理解物理与时间约束、3D 空间与复杂语境;在拼图、填字、漫画续画中保持风格一致与细节 |
| 多图参考 | Multi-Image Reference | 同时支持十几张参考图(第三方 API 口径为 1~10 张),提取人物特征、场景风格、物体结构做有机融合——官方点名的场景即"虚拟试穿(virtual try-on)" |
| 多图输出 | Multi-Image Output | 一次操作生成多张图,带全局规划与上下文一致性(分镜、漫画、IP 贴纸包) |
| 自适应比例与 4K | Adaptive Aspect Ratio & 4K | 分辨率从 2K 扩展到 4K;自适应长宽比按语义或参考形状自动调整画布 |
| 控制笔刷 | Control Brush | 5.0 新增,可通过笔刷进行精准选择与调整的图像编辑方式 |
| 高级文字渲染 | Advanced Text Rendering | 支持公式、表格、化学结构、统计图表;面向教育课件与学术插图 |
| 投机解码 | Speculative Decoding | 用小模型草拟、大模型校验的加速方法;Seedream 推理优化手段之一 |
| 对抗蒸馏 | Adversarial Distillation | 用于稳定少步推理的训练方法;官方称配合量化与投机解码实现显著加速 |
2.3 换装与换脸方向通用术语
| 术语 | 英文 / 缩写 | 释义 |
|---|---|---|
| 虚拟试穿 | VTON | 将目标服装"穿"到指定人物图像上;Seedream 官方明确将多图参考用于此场景 |
| 服装掩码 | Cloth Mask | 人体解析得到的服装区域二值图 |
| 人体解析 | Human Parsing | 像素级分割出头发、脸、上衣、裤、裙、手臂、背景等语义区域 |
| 稠密姿态 | DensePose | 将人体像素映射到 3D 表面坐标,为服装提供"穿着支架" |
| 服装保真 | Texture Fidelity | 衡量 logo、文字、高频花纹在试穿后是否保持 |
| 身份保持 | Identity Preservation | 生成结果在多大程度上仍"是那个人" |
| 人脸嵌入 | ID Embedding | 由识别模型抽取的人脸特征向量 |
| 深度伪造 | Deepfake | 用深度合成伪造人脸或声音 |
| 可识别性 | Identifiability | 司法判定肖像权侵权的核心标准:不要求完全一致,公众能认出即成立 |
| 显式标识 / 隐式标识 | Explicit / Implicit Label | 《标识办法》要求的两类标识:图片适当位置的显著提示标识;文件元数据中的属性信息与内容编号 |
3. 功能说明
3.1 八大核心能力
官方技术页列出 Seedream 5.0 的八大核心能力:
| 序号 | 能力 | 说明 | 面向场景 |
|---|---|---|---|
| 1 | 精准编辑 | 仅用文本提示词完成增 / 删 / 改 / 换,保持整体完整性 | 广告设计、电商修图、后期制作 |
| 2 | 灵活参考 | 从参考图提取人物身份、艺术风格或结构特征,在新语境中重建 | 虚拟形象、衍生设计、二次创作 |
| 3 | 视觉信号控制 | 原生 Canny / Depth / Mask | 姿态控制、建筑设计、UI 原型 |
| 4 | 上下文推理生成 | 理解物理与时间约束、3D 空间与复杂语境 | 拼图、填字、漫画续画 |
| 5 | 多图参考 | 官方明确用于虚拟试穿与多部件机械结构合成,保持尺度与物理连贯 | 电商试穿、工业设计 |
| 6 | 多图输出 | 全局规划 + 上下文一致 | 分镜、漫画、IP 贴纸包 |
| 7 | 高级文字渲染 | 公式、表格、化学结构、统计图表 | 教育课件、学术插图 |
| 8 | 自适应比例与 4K | 2K → 4K;自适应长宽比 | 印刷与多端投放 |
3.2 统一生成与编辑架构
Seedream 5.0 把文生图与 SeedEdit 图像编辑整合进同一架构联合训练,这是它与"生成模型 + 编辑模型两件套"方案的根本差异。
工程含义有三点:
- 无需切换模型:"生成 → 编辑 → 再生成"在同一会话内连续完成,不存在两个模型之间的风格漂移。
- 编辑能力受益于生成训练:官方称联合训练提升了复杂任务泛化能力。
- 上下文连续性:编辑时模型对上一轮生成的理解来自同一套权重,而非跨模型传递。
这一点与可灵 O1 Image(生成与编辑同会话)与 Qwen-Image 2.0(生图与编辑统一为单一模型)属于同一技术方向,说明"生成与编辑同构"已成为 2026 年国产图像模型的主流范式。
3.3 视觉信号控制
Seedream 5.0 原生集成 Canny / Depth / Mask 等视觉信号,无需额外模型。用户可用草图、涂鸦、辅助线引导生成。
这一点的 Harness 意义非常直接:它消除了对 ControlNet 这类外挂插件的工具依赖。在 ComfyUI 生态中,一条典型的控制生成链路需要加载额外的 ControlNet 模型、预处理器节点与权重;而在 Seedream 中,视觉信号是模型内建的条件通道。
代价是不可替换与不可组合——你无法像在 ComfyUI 中那样自由切换第三方 ControlNet 变体或串联多个控制信号。这是"内建 vs 可插拔"的经典权衡:内建更省事、更稳定,可插拔更灵活。
3.4 上下文推理与联网检索
Seedream 5.0 首次支持实时联网检索生图(RAG)并搭载 CoT 思维链推理,可多步逻辑推理与联网知识整合。
这属于 L1 上下文工程层的扩展:把"外部实时知识"纳入生成上下文。与本组其他平台的对照是——Nano Banana 有 Search Grounding,FLUX.2 [max] 有 Grounding Search,Seedream 5.0 有联网检索。三者共同指向一个趋势:图像生成正在从"闭卷创作"转向"开卷创作",模型需要知道今天天气如何、昨天的比分是多少。
对工程实现的提示是:一旦引入检索,输出就变得时间依赖,从而破坏可复现性。若业务需要可回归验证,应显式关闭或缓存检索结果——这一点在 Seedream 官方资料中未见说明,标注 [待填写]。
3.5 推理优化
官方技术页给出的优化手段为:对抗蒸馏稳定少步推理 + 4/8bit 混合量化离线平滑 + 投机解码;官方称 DiT 图像生成比 Seedream 3.0 快 10 倍以上(厂商自述,未见第三方复现,标注为厂商自述口径)。
4. 平台架构
图 4-1|Seedream 平台架构:从统一 DiT 模型到三层分发
数据来源:基于本文分析绘制的示意图。
4.1 模型架构
- 主干:统一 DiT + 新型高压缩 VAE。
- 多模态理解:用微调后的 SeedVLM 做理解,借助 VLM 的世界知识扩展输入提示词。这意味着用户的简短提示词在进入扩散主干前,可能先被 VLM 扩展——这与 FLUX.2 [klein] "不做 prompt upsampling" 的立场恰好相反,是两种截然不同的上下文哲学。
- 训练:生成与编辑联合训练;大规模多模态数据处理管线。
4.2 分发架构
[字节生态内嵌] [火山引擎 API] [第三方聚合]
├─ 剪映 / CapCut ├─ 图片生成 4.0 / 4.6 ├─ Runway(seedream5_lite/pro)
├─ 小云雀 ├─ 3.0 系列 ├─ Leonardo.ai(Seedream 4.5)
├─ 豆包 App ├─ 交互编辑 inpainting ├─ arteza.ai(5.0 Edit)
└─ 即梦 AI ├─ 智能超清 └─ flaq.ai 等 API 中转
└─ 并发扩充(付费) 三层分发的结构特点:C 端载体承载体验,B 端 API 承载集成,第三方聚合承载长尾。值得注意的是,第三方聚合平台上出现的版本(如 Leonardo 的 Seedream 4.5)可能落后于官方最新版本(5.0),跨渠道比价时必须核对版本号。
4.3 与即梦 AI 的关系
即梦 AI 是字节面向 C 端的 AI 创作产品(详见本组 02-jimeng.md),其图像底座即 Seedream 系列。二者的关系是载体与模型的关系:
- 模型层:Seedream(图)+ Seedance(视频)+ SeedVLM(多模态理解)。
- 载体层:即梦 AI 提供智能画布、故事分镜、App 与 Web 入口。
这一区分在本篇至关重要,因为 2026-04-28 被网信部门查处的是载体层(即梦 AI)而非模型层。详见 5.8 节。
5. Harness 设计
5.1 六层能力总览
| 层 | 名称 | Seedream / SeedEdit 的实现 | 证据 |
|---|---|---|---|
| L1 | 上下文工程层 | 最强项:多图参考(十余张)+ 视觉信号(Canny/Depth/Mask 原生内置)+ 联网检索(RAG)+ CoT 推理链 | 官方技术页(高) |
| L2 | 工具与执行层 | 生成 / 编辑 / 重绘 / 扩图 / 控制笔刷 / 素材提取;视觉信号为模型内建条件 | 官方(高) |
| L3 | 编排与控制层 | 生成与编辑同构,"生成→编辑→再生成"在同一会话内连续;多图输出带全局规划 | 官方(高) |
| L4 | 记忆与状态层 | 模型层面共享;未提供平台级资产库;生态侧由剪映 / 即梦的素材库承载 | 中 |
| L5 | 评估与观测层 | 官方口径称"综合评测领先、文生图与单图编辑全面超越前代";未公开具体榜单分数与 Eval Set | 中 |
| L6 | 治理与安全层 | 模型侧未见公开的显式 / 隐式标识机制说明;载体层(即梦 AI)2026-04-28 因未落实《标识办法》被查处 | 中(建议复核) |
5.2 L1 上下文工程层
Seedream 的 L1 由五类上下文源统一编排,这是本组覆盖维度最全的一档:
| 上下文类型 | 实现 | 备注 |
|---|---|---|
| 提示词 | 自然语言,经 SeedVLM 扩展 | 存在隐式改写,与 FLUX.2 [klein] 立场相反 |
| 参考图 | 多图参考,十几张(第三方 API 口径 1~10 张) | 官方点名用于虚拟试穿 |
| 结构信号 | Canny / Depth / Mask 原生内建 | 无需外挂 ControlNet |
| 外部知识 | 实时联网检索(RAG) | 引入时间依赖,破坏可复现性 |
| 推理链 | CoT 思维链推理 | 多步逻辑推理 |
需要指出的工程风险是:SeedVLM 的提示词扩展是隐式的。调用方无法确知最终送入扩散主干的提示词是什么。这带来两个后果:一是上下文不完全可审计;二是若未来需要"复现创作过程"以完成举证责任转移(见 7.4 节北京互联网法院判决),平台侧是否保存了完整上下文链并不明确。
5.3 L2 工具与执行层
工具集为:生成、编辑、重绘、扩图、控制笔刷、素材提取。工具形态为 API 端点与 C 端画布按钮。
核心特征是"内建替代外挂":视觉信号(Canny / Depth / Mask)以模型内建条件形式提供,无需外挂 ControlNet。工程上消除了工具依赖——调用方不需要管理 ControlNet 权重、预处理器版本与节点连接;代价是失去可插拔性。
与 ComfyUI 生态(每个能力是一个可自由组合的节点)相比,Seedream 走的是"能力内聚"路线:把尽可能多的能力烧进模型权重,从而减少外部编排的必要性。
5.4 L3 编排与控制层
由于生成与编辑同构(同一模型内),"生成 → 编辑 → 再生成"是同一会话内的连续操作,无需切换模型。加之多图输出带全局规划(分镜、漫画、IP 贴纸包),模型自身承担了一部分编排职责——这在本组中是少见的"编排能力内化到模型"的设计。
对照来看:
| 平台 | 编排承担方 |
|---|---|
| ComfyUI 生态 | 工作流 JSON 图(外部显式) |
| Leonardo.ai | Blueprints + 调用方 API 编排 |
| Runway | Sessions + Projects + Agentic collaborator |
| Seedream | 模型自身(生成编辑同构 + 多图全局规划) |
模型内化编排的好处是简单,代价是编排过程不可版本控制、不可 diff——你无法把"这次分镜是怎么规划出来的"导出为一个工件。
5.5 L4 记忆与状态层
Seedream 本身未提供平台级资产库,模型层面状态在各载体间共享。生态侧的素材库由剪映 / 即梦承担。
需要注意的是:即梦 AI 于 2026-02 起引入数字人分身认证机制(百科口径,具体流程 [待填写]),把"人"固化为可复用资产。这属于载体层的 L4 建设,而非模型层能力。
对使用火山引擎 API 的企业客户而言,含义是:L4 需自建。企业须自行管理商品图库、角色资产、模板与提示词版本。
5.6 L5 评估与观测层
官方口径称"综合评测领先、文生图与单图编辑全面超越前代",但未公开具体榜单分数与 Eval Set。
可观测的实际指标只有成本维度的:按张(0.22 元)或按次(0.2 元)计费、并发单独计费、免费额度 200 次。未见官方提供的质量回归集、Golden Dataset 或 A/B 评测机制。
与其他国产平台(通义万相公开 9 项基准成绩、可灵公开 FlagEval 名次)相比,Seedream 在质量评估的可公开验证性上偏弱。
5.7 L6 治理与安全层
Seedream 的 L6 呈现明显的断层,必须如实写明:
- 模型层:未见公开的显式 / 隐式标识机制说明,未见单独公示的换脸 / 换装使用限制条款。
- 载体层:即梦 AI 于 2026-04-28 因未有效落实人工智能生成合成内容标识规定要求,被网信部门依法查处(百科口径,中置信,建议以官方通报复核)。
这一断层的工程含义是:模型能力合规 ≠ 产品分发合规。监管检查的落点是导出与分发环节,而这些环节由载体层实现。使用火山引擎 API 自建服务的企业,其自身即为《标识办法》意义上的服务提供者,须自行实现显式标识与元数据隐式标识。
5.8 L6 专项:标识合规的载体与模型断层
本节把 5.7 节的结论展开为可操作的合规设计要点。
事实链
- 2025-03-14,《人工智能生成合成内容标识办法》发布,2025-09-01 施行。
- 2026-02-10 / 02-13,Seedream 5.0 / 5.0 Lite 在字节系载体上线。
- 2026-04-28,即梦 AI 因未有效落实标识规定被网信部门依法查处。
断层分析
| 层级 | 是否落实标识 | 责任主体 | 现状 |
|---|---|---|---|
| 模型层(Seedream) | 未见公开说明 | 字节 Seed 团队 | [待填写] |
| 载体层(即梦 AI) | 未有效落实,已被查处 | 即梦 AI 产品方 | 已发生监管事件 |
| API 层(火山引擎) | 未见公开说明 | 企业调用方 | 调用方自担 |
| 传播层(抖音等平台) | 应按第六条核验 | 传播平台 | — |
对使用火山引擎 API 的企业客户的三条建议
- 不要把标识合规寄托于模型层。模型是否自带水印或元数据,不等于你的产品是否合规。《标识办法》的义务主体是"服务提供者",即向终端用户提供下载 / 复制 / 导出功能的一方。
- 显式标识与隐式标识需分别实现。图片类显式标识为"适当位置添加显著的提示标识";隐式标识须写入文件元数据,含生成合成内容属性信息、服务提供者名称或编码、内容编号等制作要素信息。
- 保留可复现的创作记录。北京互联网法院 2026-03 判决确立举证责任转移规则后,"能否复现创作过程"成为抗辩关键。建议保存每次调用的请求参数、参考图哈希、模型版本号与返回内容编号。
5.9 成熟度判断
Seedream 属于"强模型 + 强上下文 + 弱平台"形态:L1 最强(五类上下文统一编排,本组覆盖维度最全)、L2 中(能力内聚,不可插拔)、L3 中强(编排内化到模型,但不可版本控制)、L4 弱(无平台级资产库,需自建)、L5 弱(无公开榜单分数与 Eval Set)、L6 中(载体层已发生监管事件,模型层未见说明)。
与本组其他国产大厂路线(通义万相 / Qwen-Image)相比,两者在"模型即服务"上一致,差异在于:Qwen-Image 1.0 / 2.0 走 Apache 2.0 开源权重(3.0 转为闭源),Seedream 则始终闭源、仅通过生态与 API 输出。
6. 实际案例
6.1 字节生态内嵌
事实:Seedream 5.0 于 2026-02-10 在剪映、CapCut、小云雀正式上线,即梦 AI 处于灰度测试;5.0 Lite 于 2026-02-13 接入即梦。豆包 App 亦曾上线 Seedream 模型(百科,中置信)。
Harness 解读:这是"模型即产品"的典型路径——模型发布与产品上线同一天完成,中间没有第三方集成环节。其优势是能力触达速度极快,代价是模型能力的边界由产品形态决定(例如 C 端产品可能不暴露某些 API 参数)。
6.2 第三方聚合
| 聚合方 | 接入版本 | 置信度 |
|---|---|---|
| Runway | seedream5_lite(4 credits)、seedream5_pro(1K 5 credits / 2K 9 credits) | 中高 |
| Leonardo.ai | Seedream 4.5 | 中 |
| arteza.ai | Seedream 5.0 Edit(约 $0.10/次编辑) | 低—中 |
| flaq.ai 等 API 中转 | Seedream 5.0 / 5.0 Edit(2K/4K、7 种宽高比、Edit 1~10 张输入) | 中 |
可观察的现象:同一模型在不同聚合平台上的版本号不同步(Runway 已有 5.0 线,Leonardo 停留在 4.5)。跨渠道比价时必须核对版本号,否则比较的是不同代际的模型。
6.3 官方客户案例检索结果
带量化效果数据的电商 / 品牌案例:未检索到。
按本组统一写作纪律,不得以"被广泛用于电商主图、广告创意"等模糊表述替代案例。可用的事实型材料为上线时间、分发渠道与定价,均已在 6.1、6.2 节列出。
7. 总结
7.1 优势
- L1 上下文维度最全:提示词 + 参考图 + 结构信号 + 外部知识 + 推理链,五类统一编排。
- 视觉信号原生内建:Canny / Depth / Mask 无需外挂 ControlNet,工程依赖少。
- 生成与编辑同构:无需切换模型,无风格漂移,会话内连续迭代。
- 多图参考明确支持虚拟试穿:官方点名场景,尺度与物理连贯性有保障。
- 定价清晰且低:火山引擎 0.2 元 / 图、0.22 元 / 张,属本组最低档之一。
- 生态触达极广:剪映、CapCut、小云雀、豆包、即梦五端内嵌。
- 多图输出带全局规划:分镜、漫画、IP 贴纸包等批量一致性场景开箱可用。
7.2 局限与适用边界
- 无平台级资产库:L4 需自建。
- 质量评估不可公开验证:无榜单分数与 Eval Set 披露。
- 提示词存在隐式扩展:SeedVLM 扩写导致上下文不完全可审计。
- 联网检索破坏可复现性:输出时间依赖,回归验证需缓存检索结果。
- 并发需单独付费:默认并发 1,批量生产成本须单列。
- 载体层已发生监管事件:即梦 AI 2026-04-28 因未落实标识被查处。
- 编排不可版本控制:多图全局规划内化在模型中,无法导出为工件。
7.3 选型建议
| 场景 | 是否推荐 | 理由 |
|---|---|---|
| 电商虚拟试穿 | 推荐 | 多图参考官方点名支持,尺度与物理连贯 |
| 需要草图 / 结构控制的生成 | 推荐 | Canny / Depth / Mask 原生内建 |
| 分镜、漫画、贴纸包批量输出 | 推荐 | 多图输出带全局规划 |
| 中文语境下的教育 / 学术插图 | 推荐 | 公式、表格、化学结构、统计图表渲染 |
| 预算敏感的批量生产 | 推荐 | 0.2 元 / 图起;但须单列并发成本 |
| 需要可复现、可回归验证的流水线 | 谨慎 | 联网检索引入时间依赖;提示词隐式扩展 |
| 需要资产持久化的团队 | 谨慎 | 无平台级资产库 |
| 中国大陆面向 C 端分发 | 须自建标识层 | 见 7.4 |
7.4 合规提示
- 《人工智能生成合成内容标识办法》(国信办通字〔2025〕2 号)自 2025-09-01 施行。第四条:提供生成合成内容下载、复制、导出等功能时,应当确保文件中含有满足要求的显式标识;图片类显式标识为"适当位置添加显著的提示标识"。第五条:应当在生成合成内容的文件元数据中添加隐式标识,含生成合成内容属性信息、服务提供者名称或者编码、内容编号等制作要素信息;鼓励添加数字水印形式的隐式标识。第六条:传播平台应当核验元数据隐式标识并分三档处理(已标识→加显著提示;未标识但用户声明→提示"可能为";未标识未声明但检测到痕迹→提示"疑似")。第七条:App 分发平台应当在上架审核时核验标识材料。第十条(红线):任何组织和个人不得恶意删除、篡改、伪造、隐匿标识,不得为他人实施上述行为提供工具或服务。
- 配套强制性国家标准《网络安全技术 人工智能生成合成内容标识方法》同步发布。
- 若用于换装或换脸,适用《中华人民共和国民法典》第一千零一十八条(肖像为"可以被识别的外部形象")与一千零一十九条(任何组织或者个人不得以丑化、污损,或者利用信息技术手段伪造等方式侵害他人的肖像权;未经肖像权人同意,不得制作、使用、公开肖像权人的肖像)。第一千零二十条的合理使用情形不包含商业性换脸。
- 北京互联网法院 2026-03 生效判决确立四项裁判要点:可识别性为核心判定标准(AI 换脸形象与原肖像无需完全一致,面部轮廓、五官特征高度相似且社会一般公众能够识别即构成使用特定自然人肖像);举证责任转移(主张"AI 偶然撞脸"须复现创作过程,无法复现承担举证不能后果);著作权授权不能吸收肖像权(获信息网络传播权授权但未尽合理审查义务仍构成侵权);"技术中立"不是免责事由(争议片段"时长极短"不构成抗辩)。
- 行业警示:2026-04-28,即梦 AI 网站因未有效落实人工智能生成合成内容标识规定要求被网信部门依法查处。这是本组研究中最直接的监管案例,说明标识义务的落点在载体与分发环节。
信息缺口声明
- Seedream 模型侧的显式 / 隐式标识机制:未检索到官方公开说明,标注 [待填写]。
- 即梦 AI 被查处的官方通报:目前来源为百科词条(中置信),建议以网信部门官方通报复核,标注 。
- 官方客户案例与量化效果数据:未检索到,如实标注"未检索到"。
- Seedream 5.0 的公开榜单分数与 Eval Set:官方仅称"综合评测领先",未披露具体数值,标注 [待填写]。
- 即梦"数字人分身认证机制"的具体流程:仅百科提及,无细则,标注 [待填写]。
- 联网检索(RAG)是否可关闭,以及关闭后的行为:官方未见说明,标注 [待填写]。
- SeedVLM 提示词扩展的具体行为与是否可禁用:未检索到官方说明,标注 [待填写]。
- 换装 / 换脸能力的官方边界政策:未检索到单独公示条款,标注 [待填写]。
- 第三方聚合平台的版本同步状态(Runway 5.0 线 vs Leonardo 4.5):来自评测快照,可能已变动,标注 。
8. 参考资料
- 火山引擎 · 即梦AI-图像生成计费说明 — 火山引擎,最近更新 2026-03-31。https://www.volcengine.com/docs/85621/1544714
- Seedream 5.0 技术页(八大能力 / 统一架构) — 字节 Seed 团队。http://seedream4.org/seedream-4
- 即梦 AI 官网 — 字节跳动。https://jimeng.jianying.com/
- 百度百科 · Seedream(含发布时间与团队变动) https://baike.baidu.com/item/Seedream/67390954
- 百度百科 · 即梦AI(含查处事件与产品沿革) https://baike.baidu.com/item/%E5%8D%B3%E6%A2%A6App/67386767
- 《人工智能生成合成内容标识办法》全文 — 中央网信办,2025-03-14。https://www.cac.gov.cn/2025-03/14/c_1743654684782215.htm
- 《人工智能生成合成内容标识办法》解读 — 中国政府网 / 新华社,2025-03-16。https://www.gov.cn/zhengce/202503/content_7014281.htm
- 《9月1日起,AI生成合成内容必须添加标识》 — 央视网,2025-03-15。https://big5.cctv.com/gate/big5/news.cctv.cn/2025/03/15/ARTI36OOL0hP5mpvU5cDgo4L250315.shtml
- 《技术不是侵权"挡箭牌" 法院这样认定 AI"盗脸"》 — 新华社《经济参考报》,2026-04-17。http://dz.jjckb.cn/www/pages/webpage2009/html/2026-04/17/content_115180.htm
- 《e案e审丨短剧角色 AI 换脸"神似"知名演员,是偶然"撞脸"还是故意侵权?》 — 北京互联网法院供稿,澎湃新闻。https://www.thepaper.cn/newsDetail_forward_32799628
Seedream / SeedEdit (ByteDance)
1. Introduction
1.1 Platform Overview
Seedream and SeedEdit are developed by ByteDance's Seed team, ByteDance's in-house model line for visual multimodal generation. Seedream handles image generation, and SeedEdit handles image editing; since Seedream 5.0, the two have been integrated into a single architecture and trained jointly.
In the AI Harness six-layer capability model, Seedream represents the "domestic big-tech model-as-a-service" route: model capability is self-developed by a big tech company and deeply embedded in its own ecosystem (JianYing, CapCut, XiaoYunque, Doubao, Jimeng), while also being exposed externally as APIs through Volcano Engine. Its L1 (context engineering) ranks among the strongest in this group — orchestrating five types of context in a unified way: prompts, reference images, structural signals, external knowledge, and reasoning chains. However, its L4 (memory and state) and L6 (governance and security) show a clear "carrier-layer vs. model-layer disconnect," which is the issue this article most needs to address in depth.
| Item | Content | Confidence |
|---|---|---|
| R&D team | ByteDance Seed team (visual multimodal generation) | Medium |
| Model line | Seedream (image generation) + SeedEdit (image editing) | High |
| Current version | Seedream 5.0 / 5.0 Lite | Medium-high |
| Commercialization path | ByteDance-ecosystem embedding + Volcano Engine API + third-party aggregation platforms | Medium-high |
| Technical approach | Unified DiT + new high-compression VAE; joint training of generation and editing | High (official tech page) |
| Team changes | Leadership turnover: Yang Jianchao on leave, Feng Jiashi departed, later taken over by Zhou Chang (joined ByteDance from Alibaba in 2024) | Medium (encyclopedia) |
1.2 Version History and Release Timeline
| Time | Node | Description | Confidence |
|---|---|---|---|
| — | Seedream 3.0 / SeedEdit 3.0 | Early version | Medium |
| — | Seedream 4.0 | Balance of high quality and high efficiency; inference efficiency greatly optimized | Medium-high |
| 2026-02-10 | Seedream 5.0 officially launched | Officially launched on JianYing, CapCut, and XiaoYunque; grayscale testing on Jimeng AI | Medium-high |
| 2026-02-13 | Seedream 5.0 Lite | Integrated into Jimeng AI | Medium-high |
| 2026-02 | Jimeng integrated with Seedance 2.0 | Synchronous video-side upgrade; also from ByteDance's Seed team | Medium-high |
It should be noted that Seedream's "version" and "launch" are two different concepts: the version number is defined by the model team, while the launch time is executed separately by each carrier (JianYing, CapCut, XiaoYunque, Jimeng), so there can be a mismatch in which "the model is released but a certain carrier is still in grayscale testing." This is a typical phenomenon of multi-carrier distributed models, and selection decisions should be based on the actual API version number called.
1.3 Pricing and Open Form
Volcano Engine official pricing (very high confidence)
| Capability | Billing method | Price (CNY) |
|---|---|---|
| Jimeng AI - image generation 4.0 / 4.6 | Per generated image (a single call may probabilistically yield multiple images) | 0.22 CNY/image |
| 3.0 series (text-to-image 3.0 / 3.1, image-to-image 3.0 smart reference, AI marketing product image 3.0) | Per call (1 image per call) | 0.2 CNY/image |
| Interactive editing inpainting | Per call | 0.2 CNY/call |
| Smart upscaling | Per call | 0.4 CNY/call |
| Concurrency expansion | Per concurrency | 500 CNY/day/concurrency; 10,000 CNY/month/concurrency |
| Free quota | — | 200 trial calls, concurrency of 1 |
| Arrears policy | — | Usable for 2 hours after falling into arrears; resources released if not topped up within 24 hours |
Third-party platform quotes (low-to-medium confidence, horizontal reference only)
| Channel | Quote | Confidence |
|---|---|---|
| Third-party API docs (flaq.ai) | Seedream 5.0 / 5.0 Edit supports 2K/4K and 7 aspect ratios (16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 1:1); Edit supports 1–10 image inputs | Medium |
| arteza.ai | Seedream 5.0 Edit approx. 1 credit ≈ $0.10/editing call, 5–15 s return, plans from $5/month | Low–medium |
| Within the Runway platform | seedream5_lite 4 credits; seedream5_pro 5 credits (1K) / 9 credits (2K) | Medium-high |
A cost-structure note worth calling out: concurrency is a separately billed dimension (500 CNY/day/concurrency or 10,000 CNY/month/concurrency), and under the default free quota concurrency is only 1. For batch production scenarios, concurrency cost can be significantly higher than the per-image billing itself and must be itemized separately in the budget.
2. Glossary
2.1 General AI Image Terms
| Term | English / Abbreviation | Definition |
|---|---|---|
| Text-to-Image | Text-to-Image (T2I) | Generates an image from text prompts alone |
| Image-to-Image | Image-to-Image (I2I) | Generates a new image conditioned on one or more images |
| Inpainting | Inpainting | Regenerates a designated region of an image while leaving the rest unchanged |
| Outpainting | Outpainting | Continues generation into regions extended beyond the canvas |
| Latent diffusion | Latent Diffusion / DiT | Diffusion in a compressed latent space; DiT replaces UNet with a Transformer |
| Variational autoencoder | VAE | Encoder/decoder between images and latent space; a high-compression VAE reduces compute |
| Chain-of-thought | CoT (Chain-of-Thought) | The model performs multi-step reasoning before output; Seedream 5.0 ships CoT reasoning |
| Retrieval-augmented generation | RAG | Retrieves external knowledge before generation and incorporates it into context; Seedream 5.0 supports real-time web-searched image generation |
| Vision-language model | VLM | A multimodal model that understands both images and text; Seedream uses a fine-tuned SeedVLM to expand prompts |
| Random seed | Seed | A fixed random-initial-noise number that reproduces the same image under the same parameters |
2.2 Seedream / SeedEdit-Specific Terms
| Term | English / Abbreviation | Definition |
|---|---|---|
| Unified generation and editing architecture | Unified Generation & Editing | Seedream 5.0 integrates text-to-image and SeedEdit image editing into a single architecture for joint training, improving generalization on complex tasks |
| Visual signal control | Visual Signal Control | Natively integrates visual signals such as Canny / Depth / Mask, with no additional model needed; users can guide generation with sketches, doodles, and guide lines |
| In-context reasoning generation | In-Context Reasoning | The generation paradigm expands from "executing instructions" to "in-context reasoning": understanding physical and temporal constraints, 3D space, and complex contexts; maintaining style consistency and detail in puzzles, crosswords, and comic continuation |
| Multi-image reference | Multi-Image Reference | Supports over ten reference images simultaneously (third-party API spec says 1–10), extracting character features, scene style, and object structure for organic fusion — the scenario officially singled out is "virtual try-on" |
| Multi-image output | Multi-Image Output | Generates multiple images in a single operation, with global planning and contextual consistency (storyboards, comics, IP sticker packs) |
| Adaptive aspect ratio & 4K | Adaptive Aspect Ratio & 4K | Resolution scales from 2K to 4K; adaptive aspect ratio automatically adjusts the canvas based on semantics or reference shape |
| Control brush | Control Brush | New in 5.0; an image-editing method that enables precise selection and adjustment via a brush |
| Advanced text rendering | Advanced Text Rendering | Supports formulas, tables, chemical structures, and statistical charts; aimed at educational courseware and academic illustrations |
| Speculative decoding | Speculative Decoding | An acceleration method where a small model drafts and a large model verifies; one of Seedream's inference optimizations |
| Adversarial distillation | Adversarial Distillation | A training method for stabilizing few-step inference; the official claims significant acceleration when combined with quantization and speculative decoding |
2.3 General Terms for Clothing Swapping and Face Swapping
| Term | English / Abbreviation | Definition |
|---|---|---|
| Virtual try-on | VTON | "Wearing" a target garment onto a designated person image; Seedream officially points to multi-image reference for this scenario |
| Cloth mask | Cloth Mask | Binary image of the garment region obtained from human parsing |
| Human parsing | Human Parsing | Pixel-level segmentation of hair, face, top, pants, skirt, arms, background, and other semantic regions |
| Dense pose | DensePose | Maps human pixels to 3D surface coordinates, providing a "dressing scaffold" for garments |
| Texture fidelity | Texture Fidelity | Measures whether logos, text, and high-frequency patterns are preserved after try-on |
| Identity preservation | Identity Preservation | How much the generated result is still "that person" |
| Face embedding | ID Embedding | Face feature vector extracted by a recognition model |
| Deepfake | Deepfake | Forging a face or voice using deep synthesis |
| Identifiability | Identifiability | The core judicial standard for finding portrait-right infringement: exact identity is not required; recognition by the general public suffices |
| Explicit / implicit label | Explicit / Implicit Label | The two types of labels required by the Labeling Measures: a conspicuous prompt label at an appropriate position in the image; and attribute info plus content number in the file metadata |
3. Feature Description
3.1 Eight Core Capabilities
The official tech page lists Seedream 5.0's eight core capabilities:
| No. | Capability | Description | Target scenarios |
|---|---|---|---|
| 1 | Precise editing | Complete add / delete / modify / replace using text prompts alone, while maintaining overall integrity | Ad design, e-commerce retouching, post-production |
| 2 | Flexible reference | Extract a person's identity, artistic style, or structural features from a reference image and reconstruct them in a new context | Virtual avatars, derivative design, secondary creation |
| 3 | Visual signal control | Native Canny / Depth / Mask | Pose control, architectural design, UI prototyping |
| 4 | In-context reasoning generation | Understand physical and temporal constraints, 3D space, and complex contexts | Puzzles, crosswords, comic continuation |
| 5 | Multi-image reference | Officially used for virtual try-on and multi-part mechanical structure synthesis, maintaining scale and physical coherence | E-commerce try-on, industrial design |
| 6 | Multi-image output | Global planning + contextual consistency | Storyboards, comics, IP sticker packs |
| 7 | Advanced text rendering | Formulas, tables, chemical structures, statistical charts | Educational courseware, academic illustrations |
| 8 | Adaptive aspect ratio & 4K | 2K → 4K; adaptive aspect ratio | Print and multi-channel delivery |
3.2 Unified Generation and Editing Architecture
Seedream 5.0 integrates text-to-image and SeedEdit image editing into a single architecture for joint training, which is its fundamental difference from the "generation model + editing model as two separate pieces" approach.
There are three engineering implications:
- No model switching needed: "generation → editing → re-generation" happens continuously within a single session, with no style drift between two models.
- Editing benefits from generation training: the official states that joint training improves generalization on complex tasks.
- Contextual continuity: during editing, the model's understanding of the previous round of generation comes from the same set of weights, rather than being passed across models.
This belongs to the same technical direction as Kling O1 Image (generation and editing in one session) and Qwen-Image 2.0 (image generation and editing unified into a single model), showing that "isomorphic generation and editing" has become the mainstream paradigm for domestic image models in 2026.
3.3 Visual Signal Control
Seedream 5.0 natively integrates visual signals such as Canny / Depth / Mask, with no additional model needed. Users can guide generation with sketches, doodles, and guide lines.
The Harness significance of this is very direct: it eliminates the tool dependency on external plugins like ControlNet. In the ComfyUI ecosystem, a typical controlled-generation pipeline requires loading an additional ControlNet model, preprocessor nodes, and weights; in Seedream, by contrast, visual signals are model-built-in condition channels.
The cost is irreplaceability and non-composability — you cannot freely switch third-party ControlNet variants or chain multiple control signals the way you can in ComfyUI. This is the classic "built-in vs. pluggable" trade-off: built-in is more convenient and stable, pluggable is more flexible.
3.4 In-Context Reasoning and Web Search
For the first time, Seedream 5.0 supports real-time web-searched image generation (RAG) and ships CoT chain-of-thought reasoning, enabling multi-step logical reasoning and integration of up-to-date web knowledge.
This extends the L1 context-engineering layer: incorporating "external real-time knowledge" into the generation context. The comparison with other platforms in this group is — Nano Banana has Search Grounding, FLUX.2 [max] has Grounding Search, and Seedream 5.0 has web search. All three point to one trend: image generation is moving from "closed-book creation" toward "open-book creation" — the model needs to know today's weather and yesterday's score.
A hint for engineering implementation: once retrieval is introduced, the output becomes time-dependent, which breaks reproducibility. If a business needs regression verification, retrieval results should be explicitly disabled or cached — this is not documented in Seedream's official materials, marked [To be filled].
3.5 Inference Optimization
The optimizations given on the official tech page are: adversarial distillation to stabilize few-step inference + 4/8-bit mixed quantization for offline smoothing + speculative decoding; the official claims that DiT image generation is more than 10× faster than Seedream 3.0 (vendor self-reported; no third-party reproduction, marked as vendor self-reported claim).
4. Platform Architecture
图 4-1|Seedream 平台架构:从统一 DiT 模型到三层分发
数据来源:基于本文分析绘制的示意图。
4.1 Model Architecture
- Backbone: unified DiT + new high-compression VAE.
- Multimodal understanding: uses a fine-tuned SeedVLM for understanding, leveraging the VLM's world knowledge to expand input prompts. This means a user's short prompt may first be expanded by the VLM before entering the diffusion backbone — exactly the opposite stance of FLUX.2 [klein]'s "no prompt upsampling", representing two fundamentally different context philosophies.
- Training: joint training of generation and editing; large-scale multimodal data processing pipeline.
4.2 Distribution Architecture
[字节生态内嵌] [火山引擎 API] [第三方聚合]
├─ 剪映 / CapCut ├─ 图片生成 4.0 / 4.6 ├─ Runway(seedream5_lite/pro)
├─ 小云雀 ├─ 3.0 系列 ├─ Leonardo.ai(Seedream 4.5)
├─ 豆包 App ├─ 交互编辑 inpainting ├─ arteza.ai(5.0 Edit)
└─ 即梦 AI ├─ 智能超清 └─ flaq.ai 等 API 中转
└─ 并发扩充(付费) Structural characteristics of the three-layer distribution: C-side carriers host the experience, B-side APIs host integration, and third-party aggregators host the long tail. Notably, the versions that appear on third-party aggregation platforms (such as Leonardo's Seedream 4.5) may lag behind the official latest version (5.0), so version numbers must be checked when comparing prices across channels.
4.3 Relationship with Jimeng AI
Jimeng AI is ByteDance's C-side AI creation product (see 02-jimeng.md in this group), and its image foundation is the Seedream series. The relationship between the two is carrier vs. model:
- Model layer: Seedream (image) + Seedance (video) + SeedVLM (multimodal understanding).
- Carrier layer: Jimeng AI provides a smart canvas, story storyboarding, and App and Web entry points.
This distinction is crucial in this article, because what was investigated by the cyberspace authorities on 2026-04-28 was the carrier layer (Jimeng AI), not the model layer. See Section 5.8.
5. Harness Design
5.1 Six-Layer Capability Overview
| Layer | Name | Seedream / SeedEdit implementation | Evidence |
|---|---|---|---|
| L1 | Context engineering layer | Strongest: multi-image reference (over ten images) + visual signals (Canny/Depth/Mask natively built-in) + web search (RAG) + CoT reasoning chain | Official tech page (high) |
| L2 | Tool & execution layer | Generation / editing / inpainting / outpainting / control brush / material extraction; visual signals are model-built-in conditions | Official (high) |
| L3 | Orchestration & control layer | Generation and editing are isomorphic, "generation → editing → re-generation" is continuous within one session; multi-image output comes with global planning | Official (high) |
| L4 | Memory & state layer | Shared at the model level; no platform-level asset library provided; on the ecosystem side, asset libraries are carried by JianYing / Jimeng | Medium |
| L5 | Evaluation & observability layer | Official claim of "leading comprehensive benchmarks, fully surpassing prior generations in text-to-image and single-image editing"; no specific leaderboard scores or Eval Set published | Medium |
| L6 | Governance & security layer | No public explanation of explicit/implicit labeling mechanisms on the model side; the carrier layer (Jimeng AI) was investigated on 2026-04-28 for failing to implement the Labeling Measures | Medium (recheck recommended) |
5.2 L1 Context Engineering Layer
Seedream's L1 is uniformly orchestrated from five types of context sources, the fullest coverage dimension in this group:
| Context type | Implementation | Notes |
|---|---|---|
| Prompt | Natural language, expanded by SeedVLM | Implicit rewriting exists, contrary to FLUX.2 [klein]'s stance |
| Reference image | Multi-image reference, over ten images (third-party API spec 1–10) | Officially singled out for virtual try-on |
| Structural signal | Canny / Depth / Mask natively built-in | No external ControlNet needed |
| External knowledge | Real-time web search (RAG) | Introduces time dependence, breaks reproducibility |
| Reasoning chain | CoT chain-of-thought reasoning | Multi-step logical reasoning |
The engineering risk to point out is: SeedVLM's prompt expansion is implicit. The caller cannot know for certain what prompt ultimately enters the diffusion backbone. This has two consequences: first, the context is not fully auditable; second, if in the future "reproducing the creation process" is needed to complete the burden-of-proof shift (see the Beijing Internet Court ruling in Section 7.4), whether the platform side retains a complete context chain is unclear.
5.3 L2 Tool & Execution Layer
The tool set is: generation, editing, inpainting, outpainting, control brush, and material extraction. Tools take the form of API endpoints and C-side canvas buttons.
The core characteristic is "built-in replacing external plugin": visual signals (Canny / Depth / Mask) are provided as model-built-in conditions, with no external ControlNet needed. This eliminates tool dependency from an engineering standpoint — the caller does not need to manage ControlNet weights, preprocessor versions, or node connections; the cost is losing pluggability.
Compared with the ComfyUI ecosystem (where every capability is a freely composable node), Seedream takes the "capability cohesion" route: baking as many capabilities as possible into the model weights, thereby reducing the need for external orchestration.
5.4 L3 Orchestration & Control Layer
Because generation and editing are isomorphic (within a single model), "generation → editing → re-generation" is a continuous operation within the same session with no model switching. Combined with multi-image output with global planning (storyboards, comics, IP sticker packs), the model itself takes on part of the orchestration responsibility — a rare "orchestration capability internalized into the model" design within this group.
For comparison:
| Platform | Orchestration responsibility |
|---|---|
| ComfyUI ecosystem | Workflow JSON graph (external, explicit) |
| Leonardo.ai | Blueprints + caller-side API orchestration |
| Runway | Sessions + Projects + Agentic collaborator |
| Seedream | The model itself (generation-editing isomorphism + multi-image global planning) |
The benefit of model-internalized orchestration is simplicity; the cost is that the orchestration process cannot be version-controlled or diffed — you cannot export "how this storyboard was planned" as an artifact.
5.5 L4 Memory & State Layer
Seedream itself does not provide a platform-level asset library; state at the model level is shared across carriers. On the ecosystem side, asset libraries are handled by JianYing / Jimeng.
It should be noted that since 2026-02, Jimeng AI has introduced a digital-human avatar certification mechanism (per encyclopedia, specific process [To be filled]), fixing "a person" into a reusable asset. This belongs to the carrier layer's L4 construction, not a model-layer capability.
For enterprise customers using the Volcano Engine API, the implication is: L4 must be self-built. Enterprises must manage their own product image library, character assets, templates, and prompt versions.
5.6 L5 Evaluation & Observability Layer
The official claim is "leading comprehensive benchmarks, fully surpassing prior generations in text-to-image and single-image editing," but no specific leaderboard scores or Eval Set are disclosed.
The only observable actual metrics are on the cost dimension: billing per image (0.22 CNY) or per call (0.2 CNY), concurrency billed separately, and a free quota of 200 calls. No official quality regression set, Golden Dataset, or A/B evaluation mechanism is provided.
Compared with other domestic platforms (Tongyi Wanxiang publishes 9 benchmark results, Kling publishes FlagEval rankings), Seedream is weaker in the public verifiability of quality evaluation.
5.7 L6 Governance & Security Layer
Seedream's L6 shows an obvious disconnect that must be reported honestly:
- Model layer: no public explanation of explicit / implicit labeling mechanisms, and no separately published terms restricting face-swapping / clothing-swapping use.
- Carrier layer: Jimeng AI was lawfully investigated by cyberspace authorities on 2026-04-28 for failing to effectively implement the labeling requirements for AI-generated synthetic content (per encyclopedia, medium confidence, recheck against the official notice recommended).
The engineering implication of this disconnect is: model-capability compliance ≠ product-distribution compliance. Regulatory checks land on the export and distribution stages, which are implemented by the carrier layer. Enterprises that build their own services on the Volcano Engine API are themselves "service providers" in the sense of the Labeling Measures, and must implement explicit labels and metadata implicit labels on their own.
5.8 L6 Special Topic: The Carrier vs. Model Disconnect in Labeling Compliance
This section expands the conclusions of Section 5.7 into actionable compliance design points.
Fact chain
- 2025-03-14, the "Measures for Labeling AI-Generated Synthetic Content" was published, effective 2025-09-01.
- 2026-02-10 / 02-13, Seedream 5.0 / 5.0 Lite went live on ByteDance-family carriers.
- 2026-04-28, Jimeng AI was lawfully investigated by cyberspace authorities for failing to effectively implement labeling requirements.
Disconnect analysis
| Layer | Labeling implemented? | Responsible party | Current status |
|---|---|---|---|
| Model layer (Seedream) | No public explanation | ByteDance Seed team | [To be filled] |
| Carrier layer (Jimeng AI) | Not effectively implemented; already investigated | Jimeng AI product team | Regulatory incident has occurred |
| API layer (Volcano Engine) | No public explanation | Enterprise caller | Caller bears the responsibility |
| Distribution layer (Douyin and other platforms) | Should verify per Article 6 | Distribution platform | — |
Three recommendations for enterprise customers using the Volcano Engine API
- Do not pin labeling compliance on the model layer. Whether the model carries watermarks or metadata does not mean your product is compliant. The obligations under the Labeling Measures fall on the "service provider," i.e., the party that provides download / copy / export functionality to end users.
- Explicit labels and implicit labels must be implemented separately. For images, the explicit label is "adding a conspicuous prompt label at an appropriate position"; the implicit label must be written into the file metadata, including production-essential info such as generated-synthetic-content attribute information, the service provider's name or code, and the content number.
- Keep reproducible creation records. After the Beijing Internet Court's 2026-03 ruling established the burden-of-proof shift rule, "whether the creation process can be reproduced" has become key to an affirmative defense. It is recommended to save the request parameters, reference-image hashes, model version, and returned content number for every call.
5.9 Maturity Assessment
Seedream belongs to a "strong model + strong context + weak platform" form: L1 strongest (five types of context uniformly orchestrated, the fullest coverage in this group), L2 medium (capability cohesion, not pluggable), L3 medium-strong (orchestration internalized in the model, but not version-controllable), L4 weak (no platform-level asset library, must self-build), L5 weak (no public leaderboard scores or Eval Set), L6 medium (a regulatory incident has occurred at the carrier layer; no explanation on the model layer).
Compared with the other domestic big-tech routes in this group (Tongyi Wanxiang / Qwen-Image), the two agree on "model-as-a-service"; the difference is that Qwen-Image 1.0 / 2.0 released open Apache 2.0 weights (3.0 turned closed-source), while Seedream has always been closed-source and delivered only through its ecosystem and APIs.
6. Practical Cases
6.1 ByteDance-Ecosystem Embedding
Facts: Seedream 5.0 went officially live on JianYing, CapCut, and XiaoYunque on 2026-02-10, with Jimeng AI in grayscale testing; 5.0 Lite was integrated into Jimeng on 2026-02-13. The Doubao app has also hosted Seedream models (encyclopedia, medium confidence).
Harness interpretation: this is the typical "model-as-product" path — the model release and the product launch happen on the same day, with no third-party integration step in between. Its advantage is extremely fast capability reach; its cost is that the model's capability boundary is shaped by the product form (for example, a C-side product may not expose certain API parameters).
6.2 Third-Party Aggregation
| Aggregator | Integrated version | Confidence |
|---|---|---|
| Runway | seedream5_lite (4 credits), seedream5_pro (1K 5 credits / 2K 9 credits) | Medium-high |
| Leonardo.ai | Seedream 4.5 | Medium |
| arteza.ai | Seedream 5.0 Edit (~$0.10/editing call) | Low–medium |
| flaq.ai and other API relays | Seedream 5.0 / 5.0 Edit (2K/4K, 7 aspect ratios, Edit 1–10 image inputs) | Medium |
An observable phenomenon: the same model's version number is not synchronized across different aggregation platforms (Runway already carries the 5.0 line, while Leonardo remains at 4.5). Version numbers must be checked when comparing across channels; otherwise you are comparing different generations of the model.
6.3 Official Customer Case Search Results
E-commerce / brand cases with quantified effect data: none found.
Per this group's unified writing discipline, vague expressions such as "widely used for e-commerce hero images and ad creatives" must not substitute for cases. The usable factual materials are launch time, distribution channels, and pricing, all already listed in Sections 6.1 and 6.2.
7. Summary
7.1 Strengths
- Most complete L1 context dimensions: prompt + reference image + structural signal + external knowledge + reasoning chain, five types uniformly orchestrated.
- Visual signals natively built-in: Canny / Depth / Mask need no external ControlNet, fewer engineering dependencies.
- Generation and editing are isomorphic: no model switching, no style drift, continuous iteration within a session.
- Multi-image reference explicitly supports virtual try-on: the officially singled-out scenario, with guaranteed scale and physical coherence.
- Clear and low pricing: Volcano Engine at 0.2 CNY/image and 0.22 CNY/image, among the lowest tiers in this group.
- Extremely broad ecosystem reach: embedded across five endpoints — JianYing, CapCut, XiaoYunque, Doubao, and Jimeng.
- Multi-image output with global planning: batch-consistency scenarios such as storyboards, comics, and IP sticker packs work out of the box.
7.2 Limitations and Applicability Boundaries
- No platform-level asset library: L4 must be self-built.
- Quality evaluation not publicly verifiable: no leaderboard scores or Eval Set disclosure.
- Implicit prompt expansion: SeedVLM rewriting makes context not fully auditable.
- Web search breaks reproducibility: output is time-dependent; regression verification requires caching search results.
- Concurrency billed separately: default concurrency 1; batch production cost must be itemized.
- A regulatory incident has occurred at the carrier layer: Jimeng AI was investigated on 2026-04-28 for failing to implement labeling.
- Orchestration not version-controllable: multi-image global planning is internalized in the model and cannot be exported as an artifact.
7.3 Selection Recommendations
| Scenario | Recommended? | Reason |
|---|---|---|
| E-commerce virtual try-on | Recommended | Multi-image reference is officially singled out as supporting it, with scale and physical coherence |
| Generation requiring sketch / structural control | Recommended | Canny / Depth / Mask natively built-in |
| Batch output of storyboards, comics, sticker packs | Recommended | Multi-image output comes with global planning |
| Educational / academic illustrations in Chinese contexts | Recommended | Rendering of formulas, tables, chemical structures, statistical charts |
| Budget-sensitive batch production | Recommended | From 0.2 CNY/image; but concurrency cost must be itemized |
| Pipelines needing reproducible, regression-verifiable output | Caution | Web search introduces time dependence; implicit prompt expansion |
| Teams needing asset persistence | Caution | No platform-level asset library |
| C-side distribution in mainland China | Must self-build a labeling layer | See 7.4 |
7.4 Compliance Notes
- The "Measures for Labeling AI-Generated Synthetic Content" (CAC General Office Document No. 2 of 2025) has been effective since 2025-09-01. Article 4: when providing download, copy, export and similar functions for generated synthetic content, the file must be ensured to contain the required explicit label; for images, the explicit label is "adding a conspicuous prompt label at an appropriate position." Article 5: an implicit label must be added to the file metadata of generated synthetic content, including production-essential info such as generated-synthetic-content attribute information, the service provider's name or code, and the content number; adding an implicit label in the form of a digital watermark is encouraged. Article 6: distribution platforms must verify the metadata implicit label and handle content in three tiers (labeled → add a conspicuous prompt; unlabeled but the user declares → prompt "may be"; unlabeled, undeclared, but traces detected → prompt "suspected"). Article 7: app distribution platforms must verify labeling materials during listing review. Article 10 (red line): no organization or individual may maliciously delete, alter, forge, or conceal labels, nor may provide tools or services enabling others to do so.
- The supporting mandatory national standard, "Cybersecurity Technology — Methods for Labeling AI-Generated Synthetic Content," was released simultaneously.
- For clothing-swapping or face-swapping use, Article 1018 of the Civil Code of the People's Republic of China applies (a portrait is "an external image that can be recognized") along with Article 1019 (no organization or individual may infringe another person's portrait right by means of distortion, defacement, or forgery using information technology; without the consent of the portrait right holder, the portrait may not be made, used, or publicly disclosed). The fair-use circumstances in Article 1020 do not include commercial face swapping.
- The effective 2026-03 Beijing Internet Court ruling established four adjudication points: identifiability is the core judgment standard (an AI face-swapped image need not be fully identical to the original portrait; if facial contours and features are highly similar and recognizable by the general public, it constitutes use of a specific natural person's portrait); burden-of-proof shift (a claim of "an AI coincidental lookalike" requires reproducing the creation process; failure to reproduce incurs the consequence of failing to prove); copyright authorization does not absorb portrait rights (obtaining information-network-dissemination-right authorization without fulfilling reasonable review obligations still constitutes infringement); and "technological neutrality" is not a defense (arguing a disputed clip is "extremely short in duration" does not constitute a defense).
- Industry warning: on 2026-04-28, the Jimeng AI website was lawfully investigated by cyberspace authorities for failing to effectively implement the labeling requirements for AI-generated synthetic content. This is the most direct regulatory case in this group's research, showing that labeling obligations land on the carrier and distribution stages.
Information Gap Statement
- Explicit / implicit labeling mechanism on the Seedream model side: no official public explanation found, marked
[To be filled]. - Official notice of the Jimeng AI investigation: currently sourced only from an encyclopedia entry (medium confidence), recheck against the cyberspace authorities' official notice recommended, marked
[To be verified]. - Official customer cases with quantified effect data: none found, honestly marked "not found."
- Public leaderboard scores and Eval Set for Seedream 5.0: the official only says "leading comprehensive benchmarks" and discloses no specific values, marked
[To be filled]. - Specific process of Jimeng's "digital-human avatar certification mechanism": only mentioned in the encyclopedia, no details, marked
[To be filled]. - Whether web search (RAG) can be disabled, and behavior when disabled: no official explanation found, marked
[To be filled]. - Specific behavior of SeedVLM prompt expansion and whether it can be disabled: no official explanation found, marked
[To be filled]. - Official boundary policy for clothing-swapping / face-swapping capabilities: no separately published terms found, marked
[To be filled]. - Version-sync status across third-party aggregation platforms (Runway 5.0 line vs. Leonardo 4.5): from an evaluation snapshot and may have changed, marked
[To be verified].
8. References
- Volcano Engine · Jimeng AI - Image Generation Billing Notes — Volcano Engine, last updated 2026-03-31. https://www.volcengine.com/docs/85621/1544714
- Seedream 5.0 tech page (eight capabilities / unified architecture) — ByteDance Seed team. http://seedream4.org/seedream-4
- Jimeng AI official website — ByteDance. https://jimeng.jianying.com/
- Baidu Baike · Seedream (incl. release dates and team changes) https://baike.baidu.com/item/Seedream/67390954
- Baidu Baike · Jimeng AI (incl. investigation event and product history) https://baike.baidu.com/item/%E5%8D%B3%E6%A2%A6App/67386767
- Full text of the "Measures for Labeling AI-Generated Synthetic Content" — Cyberspace Administration of China, 2025-03-14. https://www.cac.gov.cn/2025-03/14/c_1743654684782215.htm
- Interpretation of the "Measures for Labeling AI-Generated Synthetic Content" — China Government Website / Xinhua News Agency, 2025-03-16. https://www.gov.cn/zhengce/202503/content_7014281.htm
- "From September 1, AI-generated synthetic content must carry labels" — CCTV, 2025-03-15. https://big5.cctv.com/gate/big5/news.cctv.cn/2025/03/15/ARTI36OOL0hP5mpvU5cDgo4L250315.shtml
- "Technology is not an infringement 'shield'; the court finds AI 'face theft' this way" — Xinhua News Agency Economic Information Daily, 2026-04-17. http://dz.jjckb.cn/www/pages/webpage2009/html/2026-04/17/content_115180.htm
- "e-Case e-Review: short-drama character AI face swap 'bears a striking resemblance' to a famous actor — coincidental lookalike or deliberate infringement?" — contributed by Beijing Internet Court, The Paper. https://www.thepaper.cn/newsDetail_forward_32799628