Compare

DeepSeek V4 Pro vs Recraft V4.1 Utility Pro SVG

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
Recraft V4.1 Utility Pro SVG
recraft/recraftv4-1-utility-pro-vector
Provider
Deepseek
Recraft
Family
DeepSeek
Recraft
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.300 /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
Recraft V4.1 Utility Pro SVG
recraft/recraftv4-1-utility-pro-vector
Full spec →

Generate detailed, high-resolution SVG vector graphics from text prompts with a general-purpose model, scalable to any size for print and large-scale design work.

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

Compare with another

Claude Fable 5 vs DeepSeek V4 Pro
anthropic/claude-fable-5 · deepseek/deepseek-v4-pro
Claude Fable 5 vs Recraft V4.1 Utility Pro SVG
anthropic/claude-fable-5 · recraft/recraftv4-1-utility-pro-vector
Claude Opus 4.8 vs DeepSeek V4 Pro
anthropic/claude-opus-4.8 · deepseek/deepseek-v4-pro
Claude Opus 4.8 vs Recraft V4.1 Utility Pro SVG
anthropic/claude-opus-4.8 · recraft/recraftv4-1-utility-pro-vector
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 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.7-Code
deepseek/deepseek-v4-pro · moonshot/kimi-k2.7-code
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"}],
)

# Recraft V4.1 Utility Pro SVG
client.chat.completions.create(
    model="recraft/recraftv4-1-utility-pro-vector",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →