Z Image Turbo
Qwen
qwen/z-image-turbo
Lightweight fast image gen
Context Window
β
Max Output
β
About this model
Z-Image Turbo is a lightweight fast text-to-image model, offering basic image generation at very low cost.
Billed per request at just $0.005. Ideal for high-frequency, low-cost image generation.
Highlights
Very low cost
Fast generation
Lightweight
High-frequency
Best For
PlaceholdersDraft generationHigh volumeQuick prototyping
2026-01-01
Capabilities
Image Gen
Aliases
z-image-turboPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.0000 |
| Output / 1M | $0.0000 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.images.generate( model="qwen/z-image-turbo", prompt="A beautiful sunset over mountains", n=1, size="1024x1024", ) print(response.data[0].url)