Pricing, context window, capabilities, and release date — pulled from each provider's public docs. Both are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.
Both models stream in parallel through your own AIgateway key. Tokens, latency, and cost update as they arrive.
| Qwen Image 3.0 Pro alibaba/qwen-image-3.0-pro | Qwen3-30b-A3b-Fp8 qwen/qwen3-30b-a3b-fp8 | |
|---|---|---|
| Provider | Alibaba | Alibaba Qwen |
| Family | Qwen | Qwen |
| Modality | image | text |
| Context window | — | 32,768 tok |
| Max output | — | 32,768 tok |
| Released | 2026-08-11 | 2025-04-30 |
| Input price | $0.040 /img | $0.051 /1M |
| Output price | — | $0.335 /1M |
| Cache read | — | — |
| Tools | — | yes |
| Streaming | — | yes |
| Vision | — | — |
| JSON mode | — | yes |
| Reasoning | — | yes |
| Prompt caching | — | — |
Alibaba's Qwen Image 3.0 Pro generates images from text prompts with a focus on complex layout generation, small-text precision, and multilingual font rendering. Supports up to 6 image variants per call, negative prompts, seed control, and optional prompt rewriting.
Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support.
# pip install aigateway-py openai
# aigateway-py: sub-accounts, evals, replays, jobs, webhook verify.
# openai SDK: chat/embeddings/images/audio — drop-in compat per our SDK's own guidance.
from openai import OpenAI
client = OpenAI(
base_url="https://api.aigateway.sh/v1",
api_key="sk-aig-...",
)
# Try Qwen Image 3.0 Pro
client.chat.completions.create(
model="alibaba/qwen-image-3.0-pro",
messages=[{"role":"user","content":"hello"}],
)
# Try Qwen3-30b-A3b-Fp8 — same client, same key
client.chat.completions.create(
model="qwen/qwen3-30b-a3b-fp8",
messages=[{"role":"user","content":"hello"}],
)