Skip to content

Provider Hunyuan

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

Hunyuan

Mode: image · Models: 1

Vendor: Hunyuan (Tencent) · Official API docs: Fal — HunyuanImage v3

HunyuanImage v3 is Tencent's text-to-image model, hosted on Fal's serverless queue. It is strong at infographic-friendly generation with readable in-image text, and exposes CFG (guidance) control, a negative prompt, and small batch counts.

Models

id Name Input type
hunyuan-v3 Hunyuan V3 t2i

CLI

# text-to-image, landscape
gen-ai generate -m hunyuan-v3 \
  -p "an infographic explaining the water cycle, clean readable labels" \
  --ar 16:9

# tighter prompt adherence with a higher CFG, batch of 2
gen-ai generate -m hunyuan-v3 \
  -p "a vintage travel poster of Kyoto in autumn" \
  --ar 3:4 --cfg 12 -n 2 --neg "blurry, text artifacts"

MCP

{ "name": "picsart_generate",
  "arguments": {
    "model": "hunyuan-v3",
    "prompt": "an infographic explaining the water cycle, clean readable labels",
    "aspectRatio": "16:9",
    "count": 1,
    "cfgScale": 7.5
  } }

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.

hunyuan-v3 — Hunyuan V3

Try hunyuan-v3 in Playground ↗

Input type: t2i

Param CLI flag Type Values
prompt -p text required
aspectRatio --ar enum 1:1 · 16:9 · 9:16 · 4:3 · 3:4 (default 16:9)
count -n enum 1 · 2 · 4 (default 1)
negativePrompt --neg text free text
cfgScale --cfg number 120, step 0.5, default 7.5

Notes: aspectRatio maps to Fal image_size, countnum_images (capped at 4), cfgScaleguidance_scale.

Pricing

gen-ai pricing hunyuan-v3 -n 1

Cost scales with count (number of images generated per call).

Clone this wiki locally