🪷 Zen LM
Models

zen3-image

Best general-purpose image generation.

zen3-image

General-Purpose Image Generation

The best all-around image generation model in the Zen family. Handles a wide range of creative styles, photorealistic rendering, and artistic interpretations with high prompt adherence.

Specifications

PropertyValue
Model IDzen3-image
ArchitectureDiffusion
Tierpro max
StatusAvailable
DeploymentAPI only

Capabilities

  • Photorealistic and artistic image generation
  • High prompt adherence across diverse styles
  • Wide resolution and aspect ratio support
  • Text rendering in generated images
  • Consistent subject generation
  • Style and composition control

API Usage

curl https://api.hanzo.ai/v1/images/generations \
  -H "Authorization: Bearer $HANZO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "zen3-image",
    "prompt": "A serene mountain lake at golden hour, photorealistic",
    "n": 1,
    "size": "1024x1024"
  }'
from hanzoai import Hanzo

client = Hanzo(api_key="hk-your-api-key")

response = client.images.generate(
    model="zen3-image",
    prompt="A serene mountain lake at golden hour, photorealistic",
    n=1,
    size="1024x1024",
)

print(response.data[0].url)

Try It

Open in Hanzo Chat

Resources

See Also

On this page