Compare

Kimi-K2.7-Code vs Gpt-Oss-120b

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
Gpt-Oss-120b
openai/gpt-oss-120b
Provider
Moonshot
OpenAI
Family
Kimi
Modality
text
text
Context window
262,144 tok
128,000 tok
Max output
16,384 tok
4,096 tok
Released
2026-06-12
2025-08-05
License
Open-weight
Open-weight
Input price
$0.950 /1M
$0.350 /1M
Output price
$4.00 /1M
$0.750 /1M
Tools
yes
yes
Streaming
yes
yes
Vision
yes
JSON mode
yes
yes
Reasoning
yes
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
Gpt-Oss-120b
openai/gpt-oss-120b
Full spec →

OpenAI’s open-weight models designed for powerful reasoning, agentic tasks, and versatile developer use cases – gpt-oss-120b is for production, general purpose, high reasoning use-cases.

Strengths
  • OpenAI's first open-weight release
  • Strong instruction following
  • Apache-2.0 license
Use cases
General chatOn-prem replacement for closed GPT

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 Gpt-Oss-120b
anthropic/claude-fable-5 · openai/gpt-oss-120b
Claude Opus 4.8 vs Kimi-K2.7-Code
anthropic/claude-opus-4.8 · moonshot/kimi-k2.7-code
Claude Opus 4.8 vs Gpt-Oss-120b
anthropic/claude-opus-4.8 · openai/gpt-oss-120b
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"}],
)

# Gpt-Oss-120b
client.chat.completions.create(
    model="openai/gpt-oss-120b",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →