Skip to content

Provider Reve

hovhannes@picsart.com edited this page Jun 19, 2026 · 3 revisions

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

id Name Input type
reve Reve t2i

CLI

# 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

{ "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

Param CLI flag Type Values
prompt -p text required
aspectRatio --ar enum 16:9 · 9:16 · 1:1 · 4:3 · 3:4 · 3:2 · 2:3 (default 16:9)
count -n enum 1 · 2 · 4 · 6 · 8 · 10 (default 1)
imageUrls -i file image (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

gen-ai pricing reve -n 4

Cost scales with the number of images (count).

Clone this wiki locally