Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.
Recraft V4.1 generates art-directed images tuned for high aesthetics, with strong composition, accurate text rendering, and refined design taste. Fast and cost-efficient at standard resolution.
Recraft V4 Pro generates high-resolution, art-directed images at 2048px+ with strong composition, text rendering, and design taste. Built for print and production work.
from openai import OpenAI
client = OpenAI(
base_url="https://api.aigateway.sh/v1",
api_key="sk-aig-...",
)
# Recraft V4.1
client.chat.completions.create(
model="recraft/recraftv4-1",
messages=[{"role":"user","content":"hello"}],
)
# Recraft V4 Pro
client.chat.completions.create(
model="recraft/recraftv4-pro",
messages=[{"role":"user","content":"hello"}],
)