Compare

Kimi-K2.7-Code 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
Kimi-K2.7-Code
moonshot/kimi-k2.7-code
Recraft V4.1 Utility Pro SVG
recraft/recraftv4-1-utility-pro-vector
Provider
Moonshot
Recraft
Family
Kimi
Recraft
Modality
text
image
Context window
262,144 tok
Max output
16,384 tok
Released
2026-06-12
2026-05-22
License
Open-weight
Proprietary
Input price
$0.950 /1M
Output price
$4.00 /1M
Per image
$0.300 /img
Tools
yes
Streaming
yes
Vision
yes
JSON mode
yes
Reasoning
yes
Prompt caching
Batch API
Try it
Open in playground →
View model →
Kimi-K2.7-Code
moonshot/kimi-k2.7-code
Full spec →

Kimi K2.7 is a frontier-scale open-source 1T parameter model with a 262.1k context window, multi-turn tool calling, vision inputs, and structured outputs for agentic workloads.

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

Kimi-K2.7-Code vs Claude Opus 4.7
moonshot/kimi-k2.7-code · anthropic/claude-opus-4.7
Kimi-K2.7-Code vs GPT-5.4
moonshot/kimi-k2.7-code · openai/gpt-5.4
Gemini 3.1 Pro vs Kimi-K2.7-Code
google/gemini-3.1-pro · moonshot/kimi-k2.7-code
Kimi-K2.7-Code vs Kimi-K2.6
moonshot/kimi-k2.7-code · moonshot/kimi-k2.6
Kimi-K2.7-Code vs Llama-4-Scout-17b-16e-Instruct
moonshot/kimi-k2.7-code · meta/llama-4-scout-17b-16e-instruct
Claude Fable 5 vs Kimi-K2.7-Code
anthropic/claude-fable-5 · moonshot/kimi-k2.7-code
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 Kimi-K2.7-Code
anthropic/claude-opus-4.8 · moonshot/kimi-k2.7-code
Claude Opus 4.8 vs Recraft V4.1 Utility Pro SVG
anthropic/claude-opus-4.8 · recraft/recraftv4-1-utility-pro-vector
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-...",
)

# Kimi-K2.7-Code
client.chat.completions.create(
    model="moonshot/kimi-k2.7-code",
    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 →