🪷 Zen LM
Models

zen3-image-ssd

Fastest diffusion model for real-time generation.

zen3-image-ssd

Fastest Diffusion

A 1B parameter ultra-fast diffusion model achieving the lowest latency in the Zen image family. Optimized for real-time generation where every millisecond counts, including live previews, streaming interfaces, and latency-sensitive pipelines.

Specifications

PropertyValue
Model IDzen3-image-ssd
Parameters1B
ArchitectureDiffusion
Tierpro
StatusAvailable
DeploymentAPI only

Capabilities

  • Lowest latency in the Zen image model family
  • Real-time generation for interactive applications
  • High-throughput batch image production
  • Streaming image generation pipelines
  • Cost-optimized at the smallest model size

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-ssd",
    "prompt": "A neon-lit street in a rainy cyberpunk city",
    "n": 1,
    "size": "1024x1024"
  }'
from hanzoai import Hanzo

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

response = client.images.generate(
    model="zen3-image-ssd",
    prompt="A neon-lit street in a rainy cyberpunk city",
    n=1,
    size="1024x1024",
)

print(response.data[0].url)

Try It

Open in Hanzo Chat

Resources

See Also

On this page