Seedream 4.5 Edit Sequential

doubao/seedream-4.5/image-to-image-sequential

Seedream 4.5 Edit Sequential 可进行多图编辑,同时锁定角色和物体在不同画面中的一致性。它能够检测主要主体,保持连贯性,并进行受控编辑,支持最高 4K 输出。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。

示例

Seedream 4.5 Edit Sequential example 1

参数

名称类型默认约束说明
images *图片image_uploadimage/* · 1–10 items需要编辑的图片。最多可上传 10 张参考图片。
prompt *提示词textarea≤ 5000 chars用于生成的正向提示词。
size尺寸select2K2K | 4K输出分辨率档位;系统会结合宽高比转换为 MaaS 所需的像素尺寸。
aspect_ratio宽高比select1:11:1 | 3:2 | 2:3 | 3:4 | 4:3 | 9:16 | 16:9 | 21:9生成图片的宽高比。
max_images最大生成数量slider11 ~ 15 · step 1最多可生成的图片数量(最多 15 张)。此值必须与上方提示词中指定的图片数量一致。

API

通过统一 REST API 调用本模型;在 API Keys 页获取密钥。

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.5/image-to-image-sequential" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "images": [
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/8acf3c5d1883.png"
    ],
    "prompt": "A serene mountain landscape with a clear blue sky, featuring a lone hiker standing on a rocky cliff, surrounded by lush greenery and distant snow-capped peaks. Please generate a set of 5 images.",
    "size": "4K",
    "aspect_ratio": "16:9",
    "max_images": 5
  }
}'

# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
  -H "Authorization: Bearer YOUR_API_KEY"
Python
import time, requests

API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1) Submit
resp = requests.post(
    "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.5/image-to-image-sequential",
    headers=HEADERS,
    json={
        "input": {
            "images": [
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/8acf3c5d1883.png"
            ],
            "prompt": "A serene mountain landscape with a clear blue sky, featuring a lone hiker standing on a rocky cliff, surrounded by lush greenery and distant snow-capped peaks. Please generate a set of 5 images.",
            "size": "4K",
            "aspect_ratio": "16:9",
            "max_images": 5
        }
    },
)
resp.raise_for_status()  # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()

# 2) Poll until a terminal state (completed / failed / cancelled).
#    This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
    if time.time() > deadline:
        raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
    time.sleep(3)
    poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
    poll.raise_for_status()
    task = poll.json()

print(task["status"], task.get("output"))
JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };

// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.5/image-to-image-sequential", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "images": [
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/8acf3c5d1883.png"
      ],
      "prompt": "A serene mountain landscape with a clear blue sky, featuring a lone hiker standing on a rocky cliff, surrounded by lush greenery and distant snow-capped peaks. Please generate a set of 5 images.",
      "size": "4K",
      "aspect_ratio": "16:9",
      "max_images": 5
    }
  }),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();

// 2) Poll until a terminal state (completed / failed / cancelled).
//    This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
  if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
  await new Promise((r) => setTimeout(r, 3000));
  const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
  if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
  task = await poll.json();
}

console.log(task.status, task.output);

文档

Seedream 4.5 Edit Sequential

高级多图片编辑,确保身份一致性

Seedream 4.5 Edit Sequential 是一款先进的文本生成图片模型,专为多图片编辑任务设计。它确保角色和物体的身份在所有输出中保持一致,非常适合广告活动、产品系列和角色阵容。支持最高 4K 分辨率,无冷启动,价格实惠,轻松提供专业级结果。

🚀 核心功能

  • 多图片主体追踪:自动检测并追踪所有输入图片中的主要主体,确保编辑一致性。
  • 身份保持:锁定面部结构、比例和物体身份,确保输出的连续性。
  • 高参考保真度:在应用编辑时保持光照、色彩平衡和视觉细节。
  • 批量编辑控制:使用单一提示词一致地转换整个图片集。
  • 支持 4K 分辨率:输出尺寸最高支持 8192 × 8192 像素,提供高质量结果。
  • 生产级质量:生成清晰、无伪影的图片,适合专业工作流程。

🛠️ 技术规格

规格描述
模型 IDbytedance/seedream-v4.5/edit-sequential
任务类型文本生成图片
输入格式图片(数组,最多 10 张)、提示词(字符串)
输出格式图片(PNG、JPEG 等)
分辨率512 × 512 至 8192 × 8192 像素
生成数量每批最多生成 15 张编辑后的图片
基础价格每张图片 $0.04

示例提示词

  1. 将服装换成黑色西装,添加柔和的摄影棚灯光,保持姿势和背景不变。
  2. 应用冬季主题,添加雪景氛围,保持主体身份一致。

💰 定价

生成数量总价格
1$0.04
4$0.16
8$0.32

价格根据请求的生成图片数量按每张图片计算。

💡 最佳应用场景

  • 批量肖像编辑:在多张肖像中应用固定风格或外观。
  • 产品系列编辑:确保产品系列的视觉一致性。
  • 品牌活动:为广告创建一致的视觉效果,突出同一模特或产品。
  • 角色设计:在保持身份的同时生成服装、情绪或光照的变化。
  • 电商目录:以统一的编辑刷新季节性产品图片。

🔗 相关模型

  • Seedream V4:高分辨率文本生成图片模型,用于创建 Seedream 风格的新场景。
  • Nano Banana Pro:超快文本生成图片模型,用于生成大量新图片。
  • Qwen Image Edit Plus:单图片编辑模型,具有强大的语义理解能力,适合一次性或小批量编辑。

相关模型

xAI Grok Imagine Image v2.0 图片编辑
Image to ImageX Ai

xAI Grok Imagine Image v2.0 图片编辑

xAI Grok Imagine Image V2.0 Edit 可根据文本提示词对输入图片进行编辑,并支持可配置的分辨率和质量,适用于精细图片编辑、视觉优化、创意变体、社交内容、营销素材和生产工作流。提供开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。

$0.090 / 每次
Qwen Image 3.0 Pro Edit|快速图片编辑
Image to ImageQwen Image 3.0 Pro

Qwen Image 3.0 Pro Edit|快速图片编辑

Qwen Image 3.0 Pro Edit 是一款专业级图片编辑模型,具备出色的画质和高级指令理解能力。最高支持 2k。提供开箱即用的 REST inference API,性能优异,无冷启动,价格实惠。

$0.080 / 每次
Image to Image
Image to ImageNamiFusion

图片换头

将照片中的人物头部替换为参考图中的头部。先上传目标照片,再上传头部参考图。

$0.220 / 每次
Nami Qwen I2I Spicy
Image to Image

Nami Qwen I2I Spicy

使用自然语言指令编辑参考图片,并尽量保留未要求修改的内容。

$0.040 / 每次
Nano Banana 图像编辑
Image to ImageGoogle

Nano Banana 图像编辑

高性价比智能修图。 无需蒙版即可实现物体替换与风格迁移,极速响应,成本低廉。

$0.040 / 每次
Nano Banana Pro 图像编辑
Image to ImageGoogle

Nano Banana Pro 图像编辑

4K 语义级修图。基于自然语言修改现有图像,支持智能光影融合与图像内多语言文字编辑。

$0.140 / 每次
Nano Banana 2 图像编辑
Image to ImageGoogle

Nano Banana 2 图像编辑

4K 语义级修图。基于自然语言修改现有图像,支持智能光影融合与图像内多语言文字编辑。

$0.070 / 每次
Seedream V5.0 Pro Edit 图片编辑与生成 API
Image to ImageDoubao

Seedream V5.0 Pro Edit 图片编辑与生成 API

ByteDance 推出的 Seedream V5.0 Pro Edit 可基于单张图片或多参考图进行图片编辑与生成,最多支持 10 张参考图片,支持宽高比选择以及 1K / 2K 输出档位。开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。

$0.050 / 每次