Compare

DeepSeek V4 Pro vs Grok Imagine Image Quality

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.

Search2/4
DeepSeek V4 Pro
deepseek/deepseek-v4-pro
Grok Imagine Image Quality
xai/grok-imagine-image-quality
Provider
Deepseek
xAI
Family
DeepSeek
Modality
text
image
Context window
131,072 tok
Max output
4,096 tok
Released
2026-06-08
2026-05-22
License
Open-weight
Proprietary
Input price
$1.74 /1M
Output price
$3.48 /1M
Per image
$0.050 /img
Tools
Streaming
yes
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
Open in playground →
View model →
DeepSeek V4 Pro
deepseek/deepseek-v4-pro
Full spec →

DeepSeek V4 Pro is a high-capability reasoning model from DeepSeek, served via Fireworks infrastructure for production-grade inference.

Strengths
  • General-purpose chat
  • Long context
  • Tool use
Use cases
ChatbotsContent generationAgentic workflows
Grok Imagine Image Quality
xai/grok-imagine-image-quality
Full spec →

xAI's higher-fidelity text-to-image model optimized for sharper details, more accurate compositions, and stronger text rendering. Supports image editing via reference images and masks. Trades speed for quality compared to grok-imagine-image. Default output at 2k resolution.

Strengths
  • Text-to-image generation
  • Creative control
Use cases
Marketing assetsProduct mockupsConcept art

Compare with another

DeepSeek V4 Pro vs Claude Opus 4.8
deepseek/deepseek-v4-pro · anthropic/claude-opus-4.8
DeepSeek V4 Pro vs MiniMax M3
deepseek/deepseek-v4-pro · minimax/m3
DeepSeek V4 Pro vs Gemini 3.1 Pro
deepseek/deepseek-v4-pro · google/gemini-3.1-pro
DeepSeek V4 Pro vs Claude Sonnet 4.6
deepseek/deepseek-v4-pro · anthropic/claude-sonnet-4.6
DeepSeek V4 Pro vs GPT-5.5
deepseek/deepseek-v4-pro · openai/gpt-5.5
DeepSeek V4 Pro vs O3
deepseek/deepseek-v4-pro · openai/o3
DeepSeek V4 Pro vs Kimi-K2.6
deepseek/deepseek-v4-pro · moonshot/kimi-k2.6
DeepSeek V4 Pro vs Gemini 2.5 Pro
deepseek/deepseek-v4-pro · google/gemini-2.5-pro
DeepSeek V4 Pro vs Qwen 3.5 397B A17B
deepseek/deepseek-v4-pro · alibaba/qwen3.5-397b-a17b
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# DeepSeek V4 Pro
client.chat.completions.create(
    model="deepseek/deepseek-v4-pro",
    messages=[{"role":"user","content":"hello"}],
)

# Grok Imagine Image Quality
client.chat.completions.create(
    model="xai/grok-imagine-image-quality",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →