Seedream 5.0 Edit

doubao/seedream-5.0-lite/image-to-image

Seedream 5.0 Lite Edit は、参照画像の顔の特徴、照明、色調を保持する最先端の画像編集モデルです。高忠実度の編集をサポートし、プロフェッショナル品質、優れたプロンプト対応能力、最大 4K 解像度に対応しています。すぐに使用可能な REST 推論 API を提供し、優れたパフォーマンス、コールドスタートなし、手頃な価格を実現しています。

サンプル

Seedream 5.0 Edit example 1

パラメータ

名前既定制約説明
images *画像image_uploadimage/* · 1–10 items編集する画像。最大 10 枚の参照画像をアップロードできます。
prompt *プロンプトtextarea≤ 5000 chars生成用のポジティブプロンプト。
sizeサイズtext2048x2048≤ 500 chars生成される画像の幅と高さのピクセル値を指定します。
output_format出力形式selectjpeg | 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" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "images": [
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/fb08b5a532e1.png",
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/47b6ac92ee74.png",
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/b9e854af97c0.png"
    ],
    "prompt": "Generate a high-fidelity edited image retaining the natural lighting and facial features of the reference image while enhancing skin tone and sharpness.",
    "size": "2048x2048",
    "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",
    headers=HEADERS,
    json={
        "input": {
            "images": [
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/fb08b5a532e1.png",
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/47b6ac92ee74.png",
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/b9e854af97c0.png"
            ],
            "prompt": "Generate a high-fidelity edited image retaining the natural lighting and facial features of the reference image while enhancing skin tone and sharpness.",
            "size": "2048x2048",
            "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", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "images": [
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/fb08b5a532e1.png",
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/47b6ac92ee74.png",
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/b9e854af97c0.png"
      ],
      "prompt": "Generate a high-fidelity edited image retaining the natural lighting and facial features of the reference image while enhancing skin tone and sharpness.",
      "size": "2048x2048",
      "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

高精度な画像編集、プロフェッショナル品質、最大4K解像度対応

Seedream 5.0 Lite Edit は、参照画像の顔の特徴、照明、色調を保持しながら正確な画像編集を可能にする最先端のテキストから画像へのモデルです。優れたプロンプト対応能力、柔軟な出力サイズ設定、手頃な価格を特徴とし、軽量化されたモデルとして速度と品質を最適化しています。REST 推論 API を介して、コールドスタートなしでシームレスに統合できます。


🚀 主な特徴

  • 複数参照画像対応:最大10枚の参照画像を使用して複雑な構成や変換を実現。
  • 自然言語編集:簡単なテキストで編集内容を記述し、直感的かつ正確なコントロールを提供。
  • スタイル転送:サイバーパンク、アニメ、ファンタジーなど、さまざまな美学スタイルに変換。
  • 柔軟な出力サイズ:カスタムサイズを指定するか、参照画像のアスペクト比をデフォルトとして使用。
  • プロンプト強化機能:編集内容の記述を自動で最適化し、より良い結果を提供。
  • 軽量かつ高速:迅速な反復処理を実現しながら、高品質な出力を維持。

🛠️ 技術仕様

仕様詳細
モデルアーキテクチャBytedance Seedream V5.0 Lite Edit 独自モデル
タスクタイプテキストから画像への編集
入力形式参照画像(配列、最大10枚)、プロンプト(文字列)
出力形式JPEG, PNG
解像度カスタマイズ可能(512 x 512 ~ 8192 x 8192 ピクセル)
価格画像1枚あたり $0.035
API統合REST API、コールドスタートなし

プロンプト例

  1. "Figure 1 をサイバーパンク風に変換し、ネオン照明を使用。"
  2. "Figure 2 にファンタジースタイルを適用し、元の色調を保持。"
  3. "Figure 1 と Figure 3 を組み合わせてシュールな構成を作成。"

💰 価格

出力費用
画像1枚$0.035

💡 主な利用ケース

  • スタイル転送:肖像画をサイバーパンク、アニメ、ファンタジーなどの芸術的スタイルに変換。
  • キャラクターの再構築:対象を新しい環境やシナリオに配置。
  • クリエイティブ合成:複数の参照画像の要素を組み合わせて独自の編集を実現。
  • コンセプトアート:既存画像のスタイライズ版を生成してクリエイティブプロジェクトに活用。
  • ソーシャルメディアコンテンツ:投稿やプロフィール用の視覚的に魅力的な編集を作成。

🔗 関連モデル

  • Seedream V5.0 Lite テキストから画像生成:テキストプロンプトから直接画像を生成。
  • Seedream V4 テキストから画像生成:前世代のテキストから画像生成モデル。

関連モデル

xAI Grok Imagine Image v2.0 画像編集
Image to ImageX Ai

xAI Grok Imagine Image v2.0 画像編集

xAI Grok Imagine Image V2.0 Edit は、テキストによるプロンプトを使って入力画像を編集できるモデルです。解像度と品質を設定でき、精密な画像編集、ビジュアル調整、クリエイティブなバリエーション、SNS コンテンツ、マーケティング素材、制作ワークフローに適しています。すぐに使える REST 推論 API を提供し、高性能・コールドスタートなし・手頃な価格で利用できます。

$0.090 / 1 回
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 / 1 回
Image to Image
Image to ImageNamiFusion

ヘッドスワップ(画像)

Swap the head in a photo with the head from a reference image. Upload the target photo first, then the head reference.

$0.220 / 1 回
Nami Qwen I2I Spicy
Image to Image

Nami Qwen I2I Spicy

自然言語の指示で参照画像を編集し、変更を指定していない部分をできるだけ保持します。

$0.040 / 1 回
Nano Banana 画像編集
Image to ImageGoogle

Nano Banana 画像編集

高速・低価格な編集。 マスキング不要で、直感的なオブジェクト置換やスタイル変換が可能。

$0.040 / 1 回
Nano Banana Pro 画像編集
Image to ImageGoogle

Nano Banana Pro 画像編集

4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。

$0.140 / 1 回
Nano Banana 2 画像編集
Image to ImageGoogle

Nano Banana 2 画像編集

4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。

$0.070 / 1 回
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 / 1 回