Flux 2 Pro
Azure
azure/flux-2-pro
Azure OpenAI AI model
Context Window
—
Max Output
—
About this model
FLUX.2 Pro — latest generation image synthesis via Azure
Access it through Chuizi.AI with a single ck- API key — no separate Azure OpenAI account needed.
Highlights
Multi-cloud failover
Unified billing via Chuizi.AI
Best For
Conversational AIContent generationSummarizationQ&A applications
2025-11-01
Capabilities
Image Gen
Aliases
flux-2-proFLUX.2-proPricing (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="azure/flux-2-pro", prompt="A beautiful sunset over mountains", n=1, size="1024x1024", ) print(response.data[0].url)