moonshot/kimi-k2.7-code
Moonshot AI Kimi K2.7 Code is a 1T-parameter sparse-MoE coding model (32B active) with a 256K-token context window. Reports +21.8% on Kimi Code Bench v2 over K2.6 while cutting reasoning tokens ~30%. Always runs with thinking enabled; purpose-built for agentic software engineering. Accessed via OpenAI-compatible interface.
Source: official_x0.5 · Verified 2026-06-17
Cache read $0.095/M · Cache write $—/M
Use either ID to call this model via the API.
moonshot/kimi-k2.7-codeReplace the ONEHOP_KEY placeholder with your API key. Create one →
from openai import OpenAI
client = OpenAI(
base_url="https://api.onehop.ai/v1",
api_key="<ONEHOP_KEY>",
)
completion = client.chat.completions.create(
model="moonshot/kimi-k2.7-code",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)