Seedream 4.5 Sequential

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

Seedream 4.5 Sequential 可生成多张图片集,确保角色和物体一致,统一调色板、光照和风格。支持高达 4K 的输出,适用于广告活动、故事板和产品线。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。

示例

Seedream 4.5 Sequential example 1

参数

名称类型默认约束说明
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/text-to-image-sequential" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "prompt": "A futuristic cityscape at night with neon lights, flying cars, and people walking in cyberpunk attire. The scene includes towering skyscrapers with glowing advertisements and a vibrant, bustling atmosphere. 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/text-to-image-sequential",
    headers=HEADERS,
    json={
        "input": {
            "prompt": "A futuristic cityscape at night with neon lights, flying cars, and people walking in cyberpunk attire. The scene includes towering skyscrapers with glowing advertisements and a vibrant, bustling atmosphere. 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/text-to-image-sequential", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "prompt": "A futuristic cityscape at night with neon lights, flying cars, and people walking in cyberpunk attire. The scene includes towering skyscrapers with glowing advertisements and a vibrant, bustling atmosphere. 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 Sequential

轻松生成多张图片,风格和角色始终一致

Seedream 4.5 Sequential 是一款先进的文本生成图片模型,专为生成连贯的多图片集而设计。它确保所有输出中的角色和对象保持一致,同时统一调色板、光照和风格。此模型支持最高 4K 分辨率,非常适合用于广告活动、故事板和产品线,且价格实惠,无冷启动问题。


🚀 核心功能

  • 角色一致性:锁定相同角色身份(如面部、发型、体型),确保所有生成图片中的角色一致。
  • 对象和道具稳定性:确保关键对象(如产品、标志、道具)在图片集中保持一致。
  • 统一视觉风格:在整个图片集中保持一致的调色板、光照、镜头角度和渲染风格。
  • 多图片输出:一次请求最多可生成 15 张图片,所有图片均基于相同提示词生成。
  • 支持 4K 细节:支持最高 8192 × 8192 像素分辨率,适用于高质量视觉作品。
  • 排版感知:擅长直接在图片上渲染品牌内容、标题和类似 UI 的元素。

🛠️ 技术规格

规格详情
模型架构Bytedance Seedream V4.5 Sequential 专有模型
任务类型文本生成图片
输入格式提示词(字符串)
输出格式图片(PNG、JPEG)
分辨率默认:2048 × 2048;范围:512 × 512 至 8192 × 8192
生成数量默认:1;范围:1 至 15
定价每张图片 $0.04
延迟优化为低延迟推理,无冷启动问题

示例提示词

  1. 提示词:"穿红色连帽衫和耳机的女孩,不同城市场景,电影风格光照。"
  2. 提示词:"展示一致品牌和配色的产品系列,现代化工作室光照。"

💰 定价

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

定价公式为 $0.04 × 生成数量。WaveSpeedAI 界面会在执行前显示确切费用。


💡 最佳应用场景

  • 漫画和故事面板:创建具有重复角色和道具的视觉叙事。
  • 品牌活动视觉:生成一致的主视觉和活动图片集。
  • 产品线可视化:以统一风格展示产品变体或配色方案。
  • 故事板和动态分镜:为前期制作工作流生成关键帧。
  • 社交媒体内容:设计适合网格布局平台的连贯系列内容。

🔗 相关模型

  • Seedream V4:单图片生成器,适用于独立的主视觉和插图。
  • Nano Banana Pro:Google 的低成本、高吞吐量模型,适合快速构思。
  • Qwen Image Edit Plus:高级模型,擅长文本渲染和视觉叙事。

相关模型

xAI Grok Imagine Image v2.0 文生图
Text to ImageX Ai

xAI Grok Imagine Image v2.0 文生图

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

$0.080 / 每次
Qwen Image 3.0 Pro 文生图
Text to ImageQwen Image 3.0 Pro

Qwen Image 3.0 Pro 文生图

Qwen Image 3.0 Pro 是一款专业级文生图模型,具备卓越画质和先进的提示词理解能力。最高支持 2k。提供开箱即用的 REST inference API,性能出色,无冷启动,价格实惠。

$0.080 / 每次
OpenAI GPT Image 2 文本生成图片
Text to ImageOpenAI

OpenAI GPT Image 2 文本生成图片

OpenAI 的 GPT Image 2 文本生成图片模型可根据自然语言提示词生成高质量图片。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。

$0.660 / 每次
OpenAI GPT Image 2 Edit 图像编辑
Text to ImageOpenAI

OpenAI GPT Image 2 Edit 图像编辑

OpenAI 的 GPT Image 2 Edit 可通过自然语言指令结合一张或多张参考图片进行图像编辑。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。

$0.660 / 每次
Nami Z-Image T2I Spicy
Text to Image

Nami Z-Image T2I Spicy

根据文本提示词生成图片,支持自定义宽高、提示词优化和随机种子。

$0.020 / 每次
Nano Banana 文生图
Text to ImageGoogle

Nano Banana 文生图

Gemini 2.5 Flash 标准版。轻量极速。兼顾速度与成本,是批量生成与快速原型设计的最佳选择。

$0.040 / 每次
Nano Banana Pro 文生图
Text to ImageGoogle

Nano Banana Pro 文生图

Gemini 3.0 Pro 旗舰版。专为 4K 原生画质打造,支持图像内多语言文字渲染与专业摄影参数控制。

$0.140 / 每次
Nano Banana Pro 文生图
Text to ImageGoogle

Nano Banana Pro 文生图

Gemini 3.0 Pro 旗舰版。专为 4K 原生画质打造,支持图像内多语言文字渲染与专业摄影参数控制。

$0.070 / 每次