Seedream 4.5 Sequential
doubao/seedream-4.5/text-to-image-sequential
Seedream 4.5 Sequential は、キャラクターやオブジェクトの一貫性を保ちながら、統一されたパレット、照明、スタイルで複数の画像セットを生成します。4K 解像度まで対応しており、キャンペーン、ストーリーボード、製品ラインに最適です。すぐに使用可能な REST 推論 API を提供し、最高のパフォーマンス、コールドスタートなし、手頃な価格を実現しています。
サンプル
パラメータ
| 名前 | 型 | 既定 | 制約 | 説明 |
|---|---|---|---|---|
| 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/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 の解像度をサポートし、キャンペーン、ストーリーボード、製品ラインに最適で、手頃な価格で冷スタートなしの性能を提供します。
🚀 主な特徴
- キャラクターの整合性:すべての生成画像で同じキャラクターのアイデンティティ(顔、髪型、体型など)を維持。
- オブジェクト&プロップの安定性:重要なオブジェクト(製品、ロゴ、小道具など)が画像セット内で一貫して維持されます。
- 統一されたビジュアルスタイル:パレット、照明、カメラアングル、レンダリングスタイルを全体で統一。
- 複数画像の出力:1回のリクエストで最大15枚の画像を生成可能。すべて同じプロンプトに基づいて生成。
- 4K対応の詳細:最大 8192 × 8192 ピクセルの解像度をサポートし、高品質なビジュアルに対応。
- タイポグラフィ対応:ブランドコンテンツ、タイトル、UI風の要素を画像上に直接レンダリング可能。
🛠️ 技術仕様
| 仕様 | 詳細 |
|---|---|
| モデルアーキテクチャ | Bytedance Seedream V4.5 Sequential 独自モデル |
| タスクタイプ | テキストから画像生成 |
| 入力形式 | プロンプト(文字列) |
| 出力形式 | 画像(PNG、JPEG) |
| 解像度 | デフォルト:2048 × 2048;範囲:512 × 512 ~ 8192 × 8192 |
| 生成枚数 | デフォルト:1;範囲:1 ~ 15 |
| 価格 | 画像1枚あたり $0.04 |
| レイテンシ | 低レイテンシ推論に最適化、冷スタートなし |
サンプルプロンプト
- プロンプト:「赤いフード付きパーカーとヘッドフォンを着けた少女、異なる都市のロケーション、映画風の照明。」
- プロンプト:「統一されたブランドと配色を特徴とする製品ラインナップ、モダンなスタジオ照明。」
💰 価格
| 生成枚数 | 合計価格 |
|---|---|
| 1 | $0.04 |
| 4 | $0.16 |
| 8 | $0.32 |
| 15 | $0.60 |
価格は $0.04 × 生成枚数 で計算されます。実行前に WaveSpeedAI インターフェースで正確な費用が表示されます。
💡 最適な利用ケース
- 漫画やストーリーパネル:繰り返し登場するキャラクターや小道具を使用したビジュアルストーリーを作成。
- ブランドキャンペーンビジュアル:一貫性のあるヒーローKVやキャンペーンセットを生成。
- 製品ラインナップの視覚化:製品のバリエーションや配色を統一されたスタイルで表示。
- ストーリーボード&アニマティック:プリプロダクションワークフロー用のキーフレームを生成。
- ソーシャルメディアコンテンツ:グリッドベースのプラットフォーム向けの一貫性のあるシリーズをデザイン。
🔗 関連モデル
- Seedream V4:単一画像生成器で、スタンドアロンのヒーローショットやイラストに最適。
- Nano Banana Pro:Google の低コスト・高スループットモデルで、迅速なアイデア出しに適しています。
- Qwen Image Edit Plus:テキストレンダリングとビジュアルストーリーテリングに優れた高度なモデル。
関連モデル
xAI Grok Imagine Image v2.0 テキストから画像生成
xAI Grok Imagine Image V2.0 Text-to-Image は、テキストプロンプトから高品質な画像を生成できます。アスペクト比、解像度、品質を設定でき、クリエイティブ制作、SNS コンテンツ、マーケティング素材、制作ワークフローに適しています。すぐに使える REST 推論 API を提供し、高性能、コールドスタートなし、手頃な価格で利用できます。
Qwen Image 3.0 Pro テキストから画像生成
Qwen Image 3.0 Pro は、優れた画質と高度なプロンプト理解を備えたプロ向けのテキストから画像生成モデルです。最大 2k に対応。すぐに使える REST inference API を提供し、高性能・コールドスタートなし・手頃な価格を実現しています。
OpenAI GPT Image 2 テキストから画像生成
OpenAI の GPT Image 2 テキストから画像生成モデルは、自然言語プロンプトから高品質な画像を生成します。すぐに使える REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。
OpenAI GPT Image 2 Edit 画像編集
OpenAI の GPT Image 2 Edit は、自然言語の指示と1枚以上の参照画像を使用して画像編集を可能にします。すぐに使える REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。
Nami Z-Image T2I Spicy
テキストプロンプトから画像を生成します。幅、高さ、プロンプト最適化、シードを設定できます。
Nano Banana テキストから画像
Gemini 2.5 Flash Image。軽量かつ高速。大量生成やプロトタイピングに最適な、最も手頃なモデル。
Nano Banana Pro テキストから画像
Gemini 3.0 Pro Image。4K 高画質、多言語テキスト描画、プロ仕様のカメラ制御に対応したハイエンドモデル。
Nano Banana Pro テキストから画像
Gemini 3.0 Pro Image。4K 高画質、多言語テキスト描画、プロ仕様のカメラ制御に対応したハイエンドモデル。