Kimi K3
⧉Kimi K3 is the new flagship from Moonshot AI, strong at long-document understanding, multi-document analysis and Chinese writing, with excellent agent and tool use. It always thinks before it answers, with the reasoning in reasoning_content; the sampling temperature is fixed by the model, so temperature / top_p in the request are ignored. Tool calling, streaming and prompt caching are supported (a repeated long prefix settles at the cache rate). Fully OpenAI-compatible: set model to kimi-k3. Pay-as-you-go, failed calls never billed.
Why this model
Moonshot's new flagship: 2.8T parameters, open weights, a context of about 1M tokens
Highlights
- 2.8T parameters with open weights, one of the largest open-weight models to date
- About 1M tokens of context (1,048,576): hand it a whole long document
- Thinks by default; the reasoning comes back separately in reasoning_content, never mixed into the answer
- Tool calling, streaming and prompt caching; a repeated long prefix bills at the cache rate
- OpenAI-compatible: existing SDK code only changes base_url and model
Price vs. official list
Per 1M tokens, USD · You save ↓40%
Copy and call
curl https://nezhagate.com/v1/chat/completions -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"model": "kimi-k3", "messages": [{"role": "user", "content": "Hello"}]}'from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY", base_url="https://nezhagate.com/v1")
r = client.chat.completions.create(model="kimi-k3", messages=[{"role": "user", "content": "Hello"}])
print(r.choices[0].message.content)Replace YOUR_API_KEY with a key from your console.
Live Test · Playground
Try out Kimi K3 right here (available after login).
Input
Advanced
Conversation
About Kimi K3
Kimi K3 is the new flagship from Moonshot AI, served on NezhaGate through the OpenAI-compatible API. It is strong at long-document understanding, multi-document analysis and Chinese writing, with excellent agent and tool use. It always thinks before it answers: the reasoning comes back in message.reasoning_content and the answer in content. The sampling temperature is fixed by the model, so the gateway ignores temperature / top_p in the request instead of returning an error. Tool calling, streaming and prompt caching are supported. Set model to kimi-k3; pay-as-you-go, failed calls never billed.
Use cases
Summaries, comparisons and Q&A over long contracts, papers or financial reports; we verified it pinpoints facts inside documents of more than 100K tokens.
OpenAI-format tools / tool_calls for retrieval augmentation, function calls and multi-step task orchestration.
Long-form articles, reports, marketing copy and polishing in natural, fluent Chinese.
It thinks before it answers, which suits maths, logic and multi-step problems; the reasoning is visible in reasoning_content.
How to choose
Pick Kimi K3 first for long documents, multi-document work and agent tasks; for everyday chat at a lower cost, DeepSeek V4.1 Flash or GLM-5.3 also fit. Switching is just the model field.
FAQ
Does the temperature parameter do anything?
Can I turn thinking off?
What should I know about long answers?
Is prompt caching supported?
Am I charged for failed calls?
Related Models
Explore other models you can integrate.
GLM-5.3
The new Z.ai flagship - coding and agents
Qwen3.7 Max
Alibaba's Qwen flagship - reasoning and coding
Grok 4.7
xAI's flagship reasoning model - long context
DeepSeek V4.1 Flash
DeepSeek's current Flash model - thinking on or off
Claude Sonnet 4.6
Balanced, efficient chat and coding model
Gemini 3.1 Pro
Next-generation flagship reasoning model from Google