Skip to content

Seedream

Mode: image · Models: 3

Vendor: BytePlus ModelArk · Official API docs: Seedream on ModelArk

Seedream (by ByteDance, on BytePlus ModelArk) is a high-fidelity text-to-image model with multi-image reference input and high-resolution output. The catalog exposes the flagship Seedream 4.5 (up to 4K) and the faster, lighter Seedream 5.0 Lite.

Models

idNameInput type
seedream-4.5Seedream 4.5t2i
seedream-5.0-liteSeedream 5.0 Litet2i
seedream-4.0Seedream 4.0t2i

CLI

bash
# text-to-image at 4K
gen-ai generate -m seedream-4.5 \
  -p "a marble statue of a fox in a sunlit gallery, dramatic side lighting" \
  --ar 16:9 -r 4K

# multi-image reference (up to 2 source images), 4 variations
gen-ai generate -m seedream-4.5 -p "blend these into one cohesive product shot" \
  -i ./ref-a.jpg -i ./ref-b.jpg -n 4

# faster, lighter variant
gen-ai generate -m seedream-5.0-lite -p "minimalist poster, bold typography" --ar 3:4

MCP

json
{ "name": "picsart_generate",
  "arguments": {
    "model": "seedream-4.5",
    "prompt": "a marble statue of a fox in a sunlit gallery, dramatic side lighting",
    "aspectRatio": "16:9",
    "resolution": "4K",
    "count": 4
  } }

Parameters

Full parameter surface for every model, sourced from gen-ai models info <id> --json. CLI flags show the primary short form; the canonical --kebab-case long form always works too.

seedream-5.0-lite — Seedream 5.0 Lite

Try seedream-5.0-lite in Playground ↗

Input type: t2i

ParamCLI flagTypeValues
resolution-renum2K · 3K (default 2K)
prompt-ptextrequired
aspectRatio--arenum1:1 · 4:3 · 3:4 · 16:9 · 9:16 · 3:2 · 2:3 · 21:9 (default 16:9)
count-nenum1 · 2 · 4 · 6 · 8 · 10 (default 1)
imageUrls-ifileimage (up to 2)
negativePrompt--negtextfree text

seedream-4.5 — Seedream 4.5

Try seedream-4.5 in Playground ↗

Input type: t2i

ParamCLI flagTypeValues
resolution-renum2K · 4K (default 2K)
prompt-ptextrequired
aspectRatio--arenum1:1 · 4:3 · 3:4 · 16:9 · 9:16 · 3:2 · 2:3 · 21:9 (default 16:9)
count-nenum1 · 2 · 4 · 6 · 8 · 10 (default 1)
imageUrls-ifileimage (up to 2)
negativePrompt--negtextfree text

Notes: Seedream 5.0 Lite shares the surface but its resolutions are gated to 2K/3K (4K rejected by the worker) even though the enum defines 4K.

seedream-4.0 — Seedream 4.0

Try seedream-4.0 in Playground ↗

Input type: t2i

ParamCLI flagTypeValues
resolution-renum1K · 2K · 4K (default 1K)
prompt-ptextrequired
aspectRatio--arenum1:1 · 4:3 · 3:4 · 16:9 · 9:16 · 3:2 · 2:3 · 21:9 (default 16:9)
count-nenum1 · 2 · 4 · 6 · 8 · 10 (default 1)
imageUrls-ifileimage (up to 2)
negativePrompt--neg-prompttextfree text

Pricing

bash
gen-ai pricing seedream-4.5 -r 4K -n 4

Cost scales with resolution and the count of images generated.

Built on @picsart/ai-sdk · gen-ai CLI · Picsart MCP · Skills