Seedream 4.5 Edit Sequential
doubao/seedream-4.5/image-to-image-sequential
Seedream 4.5 Edit Sequential は、複数画像の編集を行いながら、キャラクターやオブジェクトの一貫性をショット間で維持します。主要な被写体を検出し、連続性を保ちながら制御された編集を実現し、最大 4K 出力に対応しています。すぐに使用可能な REST 推論 API を提供し、最高のパフォーマンス、コールドスタートなし、手頃な価格を実現。
サンプル
パラメータ
| 名前 | 型 | 既定 | 制約 | 説明 |
|---|---|---|---|---|
| images *画像 | image_upload | — | image/* · 1–10 items | 編集する画像。最大 10 枚の参照画像をアップロードできます。 |
| prompt *プロンプト | textarea | — | ≤ 5000 chars | 生成用のポジティブプロンプト。 |
| sizeサイズ | select | 2K | 2K | 4K | 出力解像度。選択したアスペクト比を MaaS 用のピクセル寸法に変換します。 |
| aspect_ratioアスペクト比 | select | 1:1 | 1:1 | 3:2 | 2:3 | 3:4 | 4:3 | 9:16 | 16:9 | 21:9 | 生成画像のアスペクト比。 |
| max_images最大生成枚数 | slider | 1 | 1 ~ 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ピクセルの出力サイズをサポートし、高品質な結果を提供。
- プロダクション品質:シャープなエッジ、低アーティファクト、安定した構成で、プロフェッショナルなワークフローに適合。
🛠️ 技術仕様
| 仕様 | 説明 |
|---|---|
| モデル ID | bytedance/seedream-v4.5/edit-sequential |
| タスクタイプ | テキスト生成画像 |
| 入力形式 | 画像(配列、最大10枚)、プロンプト(文字列) |
| 出力形式 | 画像(PNG、JPEGなど) |
| 解像度 | 512 × 512 から 8192 × 8192 ピクセル |
| 生成枚数 | バッチごとに最大15枚の編集済み画像を生成 |
| 基本価格 | 画像1枚あたり $0.04 |
サンプルプロンプト
服装を黒いスーツに変更し、柔らかいスタジオ照明を追加。ポーズと背景はそのまま維持。冬のテーマを適用し、雪景色の雰囲気を追加。主体のアイデンティティは保持。
💰 価格
| 生成枚数 | 合計価格 |
|---|---|
| 1 | $0.04 |
| 4 | $0.16 |
| 8 | $0.32 |
価格はリクエストされた生成枚数に基づき、1枚あたりで計算されます。
💡 主な利用ケース
- バッチ肖像編集:複数の肖像に固定されたスタイルや外観を適用。
- 製品シリーズ編集:製品セットの視覚的な一貫性を確保。
- ブランドキャンペーン:同じモデルや製品を特徴とする広告向けに一貫したビジュアルを作成。
- キャラクターデザイン:アイデンティティを保持しながら、服装、ムード、照明のバリエーションを生成。
- Eコマースカタログ:季節ごとの製品画像を統一された編集で刷新。
🔗 関連モデル
- Seedream V4:Seedreamスタイルの新しいシーンを作成するための高解像度テキスト生成画像モデル。
- Nano Banana Pro:大量の新しい画像を生成するための超高速テキスト生成画像モデル。
- Qwen Image Edit Plus:単一画像編集モデルで、強力なセマンティック理解を備え、一回限りまたは少量バッチ編集に最適。
関連モデル
xAI Grok Imagine Image v2.0 画像編集
xAI Grok Imagine Image V2.0 Edit は、テキストによるプロンプトを使って入力画像を編集できるモデルです。解像度と品質を設定でき、精密な画像編集、ビジュアル調整、クリエイティブなバリエーション、SNS コンテンツ、マーケティング素材、制作ワークフローに適しています。すぐに使える REST 推論 API を提供し、高性能・コールドスタートなし・手頃な価格で利用できます。
Qwen Image 3.0 Pro Edit|高速画像編集
Qwen Image 3.0 Pro Edit は、優れた画質と高度な指示理解を備えたプロ向けの画像編集モデルです。最大 2k に対応。すぐに使える REST inference API を提供し、高性能、コールドスタートなし、手頃な価格で利用できます。
ヘッドスワップ(画像)
Swap the head in a photo with the head from a reference image. Upload the target photo first, then the head reference.
Nami Qwen I2I Spicy
自然言語の指示で参照画像を編集し、変更を指定していない部分をできるだけ保持します。
Nano Banana 画像編集
高速・低価格な編集。 マスキング不要で、直感的なオブジェクト置換やスタイル変換が可能。
Nano Banana Pro 画像編集
4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。
Nano Banana 2 画像編集
4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。
Seedream V5.0 Pro Edit 画像編集・生成 API
ByteDance の Seedream V5.0 Pro Edit は、単一画像または複数の参照画像をもとに画像の編集・生成を行えます。最大 10 枚の参照画像に対応し、アスペクト比の選択と 1K / 2K の出力階層をサポートしています。すぐに使える REST 推論 API で、高性能、コールドスタートなし、手頃な価格です。