Compare

Kimi-K2.7-Code vs Grok 4.20 Multi-Agent

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
Grok 4.20 Multi-Agent
xai/grok-4.20-multi-agent-0309
Provider
Moonshot
xAI
Family
Kimi
Grok 4
Modality
text
text
Context window
262,144 tok
2,000,000 tok
Max output
16,384 tok
4,096 tok
Released
2026-06-12
2026-05-22
License
Open-weight
Proprietary
Input price
$0.950 /1M
$2.00 /1M
Output price
$4.00 /1M
$6.00 /1M
Tools
yes
Streaming
yes
yes
Vision
yes
yes
JSON mode
yes
Reasoning
yes
Prompt caching
Batch API
Try it
Open in playground →
Open in playground →
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
Grok 4.20 Multi-Agent
xai/grok-4.20-multi-agent-0309
Full spec →

xAI's Grok 4.20 multi-agent model with a 2M-token context window. Multiple agents collaborate in parallel to perform deep research tasks, with function calling, structured outputs, and reasoning capabilities.

Strengths
  • General-purpose chat
  • Long context
  • Tool use
Use cases
ChatbotsContent generationAgentic workflows

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 Grok 4.20 Multi-Agent
anthropic/claude-fable-5 · xai/grok-4.20-multi-agent-0309
Claude Opus 4.8 vs Kimi-K2.7-Code
anthropic/claude-opus-4.8 · moonshot/kimi-k2.7-code
Claude Opus 4.8 vs Grok 4.20 Multi-Agent
anthropic/claude-opus-4.8 · xai/grok-4.20-multi-agent-0309
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"}],
)

# Grok 4.20 Multi-Agent
client.chat.completions.create(
    model="xai/grok-4.20-multi-agent-0309",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →