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
| Property | Value |
|---|---|
| Model ID | zen3-image-ssd |
| Parameters | 1B |
| Architecture | Diffusion |
| Tier | pro |
| Status | Available |
| Deployment | API 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
Resources
- Images API -- Endpoint documentation
- Technical Report
See Also
- zen3-image-fast -- Fast generation with higher quality
- zen3-image -- Best general-purpose image generation
- Pricing -- Full pricing table