Skip to content

Reve

Mode: image · Models: 1

Vendor: Reve · Official API docs: Reve API console docs

Reve is a text-to-image model with strong prompt adherence and an instruction-based edit path. In the Picsart catalog it routes through the fal.ai Reve wrapper, exposing a focused surface: prompt, aspectRatio, count, and an optional source image for editing.

Models

idNameInput type
reveRevet2i

CLI

bash
# text-to-image
gen-ai generate -m reve \
  -p "a marble statue of a fox wearing headphones, studio lighting" \
  --ar 3:2 -n 4 -s

# instruction edit from a source image
gen-ai generate -m reve \
  -p "make the sky a stormy sunset" \
  -i ./photo.jpg -s

MCP

json
{ "name": "picsart_generate",
  "arguments": {
    "model": "reve",
    "prompt": "a marble statue of a fox wearing headphones, studio lighting",
    "aspectRatio": "3:2",
    "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.

reve — Reve

Try reve in Playground ↗

Input type: t2i

ParamCLI flagTypeValues
prompt-ptextrequired
aspectRatio--arenum16:9 · 9:16 · 1:1 · 4:3 · 3:4 · 3:2 · 2:3 (default 16:9)
count-nenum1 · 2 · 4 · 6 · 8 · 10 (default 1)
imageUrls-ifileimage (up to 1)

Notes: Routed through the fal.ai Reve wrapper, so the surface is intentionally narrow — direct-API fields like negative_prompt, version, test_time_scaling, postprocessing are not exposed.

Pricing

bash
gen-ai pricing reve -n 4

Cost scales with the number of images (count).

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