All models
Moonshot
Kimi K2.6
Moonshot's flagship MoE. Trained for long-horizon agentic workflows; the model engineering teams reach for when the cheap models stop being enough.
1T MoE (~32B active)Modified MIT
Context
256K
Standard tok/s
70
TTFT
280ms
Ultra-fast tier serves at 1,000+ tps on reserved capacity, see pricing.
Pricing
- Input
- $0.66 / 1M tokens
- Output
- $3.41 / 1M tokens
- Cached input
- $0.144 / 1M tokens
- Fine-tunes
- Same per-token price as base
Capabilities
- SSE streaming
- Tool / function calling
- Structured JSON outputs
- Reasoning traces
Use cases
Coding agentsLong-horizon reasoningComplex tool use
Quickstart
Full quickstartkimi-k2.6.py
from openai import OpenAI
client = OpenAI(
base_url="https://api.cogito.decart.ai/v1",
api_key=os.environ["COGITO_API_KEY"],
)
response = client.chat.completions.create(
model="moonshotai/kimi-k2.6",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)