Qwen Image 2.0
Qwen
qwen/qwen-image-2.0
Qwen text-to-image, standard
Context Window
β
Max Output
β
About this model
Qwen Image 2.0 is the Qwen text-to-image generation model, creating high-quality images from text descriptions.
Billed per request at $0.02. Access via Chuizi.AI with a single ck- API key.
Highlights
Text-to-image
Strong Chinese understanding
Per-request billing
Fast generation
Best For
Marketing assetsSocial mediaConcept designContent creation
2025-06-01
Capabilities
Image Gen
Aliases
qwen-image-2.0Pricing (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/qwen-image-2.0", prompt="A beautiful sunset over mountains", n=1, size="1024x1024", ) print(response.data[0].url)