Seedream 5.0 Lite Edit Sequential
doubao/seedream-5.0-lite/image-to-image-sequential
Seedream 5.0 Lite Edit Sequentialは、複数画像の編集を行いながら、キャラクターやオブジェクトの一貫性をショット間で維持します。主要な被写体を検出し、連続性を保ちながら制御された編集を適用し、最大4K出力に対応しています。すぐに使用可能なREST推論APIを提供し、最高のパフォーマンス、コールドスタートなし、手頃な価格を実現。
サンプル
パラメータ
| 名前 | 型 | 既定 | 制約 | 説明 |
|---|---|---|---|---|
| images *画像 | image_upload | — | image/* · 1–10 items | 編集する画像。最大10枚の参照画像をアップロードできます。 |
| prompt *プロンプト | textarea | — | ≤ 5000 chars | 生成用のポジティブプロンプト。 |
| sizeサイズ | text | 2048x2048 | ≤ 500 chars | 生成される画像の幅と高さのピクセル値を指定します。 |
| max_images最大生成枚数 | slider | 1 | 1 ~ 15 · step 1 | 生成可能な画像の最大枚数(最大15枚)。この値は、上記のプロンプトで指定された画像の枚数と一致する必要があります。 |
| output_format出力形式 | select | — | jpeg | png | 出力画像の形式。 |
API
統一 REST API でこのモデルを呼び出せます。API Keys ページでキーを取得してください。
cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/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/958d27011a3d.png"
],
"prompt": "A futuristic cityscape at sunset with flying cars and neon-lit buildings, featuring a central character standing on a balcony. Please generate a set of 5 images.",
"size": "2048x2048",
"max_images": 5,
"output_format": "png"
}
}'
# 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-5.0-lite/image-to-image-sequential",
headers=HEADERS,
json={
"input": {
"images": [
"https://assets-public.namifusion.com/uploads/images/2026-04-21/958d27011a3d.png"
],
"prompt": "A futuristic cityscape at sunset with flying cars and neon-lit buildings, featuring a central character standing on a balcony. Please generate a set of 5 images.",
"size": "2048x2048",
"max_images": 5,
"output_format": "png"
}
},
)
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-5.0-lite/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/958d27011a3d.png"
],
"prompt": "A futuristic cityscape at sunset with flying cars and neon-lit buildings, featuring a central character standing on a balcony. Please generate a set of 5 images.",
"size": "2048x2048",
"max_images": 5,
"output_format": "png"
}
}),
});
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 5.0 Lite Edit Sequential
複数画像編集を簡単に、主体の一貫性を保持
Seedream 5.0 Lite Edit Sequential は、最先端のテキストから画像生成モデルであり、複数画像編集に特化しています。複数の画像にわたり主体のアイデンティティと連続性を維持する能力に優れており、キャンペーン、製品シリーズ、キャラクターデザインに最適です。最大4K解像度をサポートし、コールドスタートなしで動作し、手頃な価格で高品質かつスケーラブルな編集タスクに対応します。
🚀 主な特徴
- 複数画像の主体追跡:すべての入力画像で主要な主体を自動的に検出し、ロックします。
- キャラクターの一貫性ロック:編集された出力全体で顔の構造、比率、全体的なアイデンティティを保持します。
- 高い参照忠実度:編集を適用しながら、照明、色のバランス、視覚的な詳細を維持します。
- 制御可能で再現性のある編集:単一のプロンプトで画像バッチ全体に一貫した変換を適用します。
- 複数のスタイルバリエーション:単一の参照画像から多様な出力を生成します。
- 組み込みプロンプトエンハンサー:編集内容の説明を自動的に最適化して、より良い結果を提供します。
🛠️ 技術仕様
| パラメータ | 説明 | 範囲/オプション |
|---|---|---|
| 画像 | 編集対象のソース画像(最大10枚)。 | 1~10枚 |
| プロンプト | 希望する編集内容を記述する正のプロンプト。 | 文字列 |
| サイズ | 出力画像の幅と高さを指定します。 | 各辺512~8192ピクセル |
| 生成枚数 | 生成可能な最大画像枚数。 | 1~15(デフォルト:1) |
| 出力形式 | 出力画像の形式。 | jpeg, png |
サンプルプロンプト
- プロンプト: "すべての画像にサイバーパンクネオンスタイルを適用してください。"
- プロンプト: "冬の服装と雪景色の雰囲気で3枚の画像を生成してください。"
💰 料金
| 生成枚数 | 合計料金 |
|---|---|
| 1 | $0.035 |
| 2 | $0.07 |
| 4 | $0.14 |
| 8 | $0.28 |
| 15 | $0.525 |
請求式:出力画像1枚あたりの基本料金は $0.035。
💡 最適な利用ケース
- バッチ肖像編集:複数の肖像に一貫したスタイルを適用。
- 製品シリーズ:カタログやキャンペーン向けに統一感のある製品画像を作成。
- ブランドキャンペーン:主力製品の多様なスタイルを生成。
- キャラクターデザイン:衣装、ムード、照明のバリエーションを生成。
- Eコマースカタログ:季節の更新を一貫したスタイリングで刷新。
- ソーシャルメディアシリーズ:プラットフォーム向けに視覚的に統一されたシリーズを作成。
🔗 関連モデル
- Seedream V5.0 Lite Edit:単一画像編集とスタイル転送。
- Seedream V5.0 Lite Text-to-Image:テキストプロンプトから直接画像を生成。
- Qwen Image Edit Plus:高度な意味理解を備えた単一画像編集。
プロのヒント
- プロンプトには明確な全体指示(例:「冬の服装と雪景色の雰囲気を追加」)を使用してください。
- 入力画像の構図と照明を統一してください。
- 最も鮮明な参照画像を最初に配置して、主体追跡を最適化します。
- 安定性を確保するために、少量(2~4枚)のバッチから始めてください。
注意:最大参照画像枚数:10。1回の実行での最大出力画像枚数:15。
関連モデル
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 で、高性能、コールドスタートなし、手頃な価格です。