GPT Image 1.5
OpenAI
openai/gpt-image-1.5
High-quality image generation and editing
Context Window
—
Max Output
—
About this model
High-quality image generation and editing
Access it through Chuizi.AI with a single ck- API key — no separate upstream provider account needed.
Highlights
Text-to-image
Image editing
High-fidelity output
Token billing
Best For
Product visualsDesign assetsAd creativesImage iteration
Capabilities
Image Genimage-edit
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $8.40 |
| Output / 1M | $31.50 |
| Cache Read | $2.10 |
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="openai/gpt-image-1.5", prompt="A beautiful sunset over mountains", n=1, size="1024x1024", ) print(response.data[0].url)