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 Pro generates high-resolution, art-directed images at 2048px+ tuned for high aesthetics, with strong composition, text rendering, and refined design taste. Built for print and production work.
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 Pro
client.chat.completions.create(
model="recraft/recraftv4-1-pro",
messages=[{"role":"user","content":"hello"}],
)
# Recraft V4 Pro
client.chat.completions.create(
model="recraft/recraftv4-pro",
messages=[{"role":"user","content":"hello"}],
)