Compare

Kimi-K2.7-Code vs Gemini 2.5 Pro

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
Gemini 2.5 Pro
google/gemini-2.5-pro
Provider
Moonshot
Google
Family
Kimi
Modality
text
text
Context window
262,144 tok
1,000,000 tok
Max output
16,384 tok
65,536 tok
Released
2026-06-12
2026-05-22
License
Open-weight
Proprietary
Input price
$0.950 /1M
$1.25 /1M
Output price
$4.00 /1M
$10.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
Gemini 2.5 Pro
google/gemini-2.5-pro
Full spec →

Google's most capable Gemini 2.5 model with strong reasoning, thinking support, and a 1M token context window.

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 Gemini 2.5 Pro
anthropic/claude-fable-5 · google/gemini-2.5-pro
Claude Opus 4.8 vs Kimi-K2.7-Code
anthropic/claude-opus-4.8 · moonshot/kimi-k2.7-code
Claude Opus 4.8 vs Gemini 2.5 Pro
anthropic/claude-opus-4.8 · google/gemini-2.5-pro
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"}],
)

# Gemini 2.5 Pro
client.chat.completions.create(
    model="google/gemini-2.5-pro",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →