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.
| Wan 3.0 Prime (Text To Video) alibaba/wan-3.0-prime | FLUX.1 Kontext [Pro] black-forest-labs/flux-1-kontext-pro | |
|---|---|---|
| Provider | Alibaba | Black Forest Labs |
| Family | FLUX | |
| Modality | video | image |
| Context window | — | — |
| Max output | — | — |
| Released | 2026-09-01 | 2026-08-19 |
| Input price | $0.050 /sec | $0.040 /img |
| Output price | — | — |
| Cache read | — | — |
| Tools | — | — |
| Streaming | — | — |
| Vision | — | — |
| JSON mode | — | — |
| Reasoning | — | — |
| Prompt caching | — | — |
Wan 3.0 Prime Text-to-Video transforms written prompts into polished videos with accelerated generation, fluid motion, strong scene fidelity, and coherent visual storytelling. Built for fast creative iteration, it brings complex ideas to life while preserving visual detail and cinematic consistency throughout each shot.
FLUX.1 Kontext [pro] creates and edits images from text prompts with strong character and style consistency.
# 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 Wan 3.0 Prime (Text To Video)
client.chat.completions.create(
model="alibaba/wan-3.0-prime",
messages=[{"role":"user","content":"hello"}],
)
# Try FLUX.1 Kontext [Pro] — same client, same key
client.chat.completions.create(
model="black-forest-labs/flux-1-kontext-pro",
messages=[{"role":"user","content":"hello"}],
)