| deepseek-v4-pro | kimi-k3 | |
|---|---|---|
| Providers | DeepSeek | Moonshot AI |
| Input $/M | $0.68 | $3.03 |
| Output $/M | $2.05 | $15.15 |
| Output multiplier | ×3.00 | ×5.00 |
| Context window | 1M tokens | 1M tokens |
| Intelligence index | 42.1 | 50.2 |
| Coding index | 68.8 | 76.2 |
deepseek-v4-pro is roughly 4.4× cheaper on input than kimi-k3. If your workload passes the quality bar on the cheaper model, that gap compounds across every request; route to kimi-k3 deliberately rather than by default.
On measured intelligence index the gap is 8.1 points, with kimi-k3 ahead. That is a large enough spread to be visible on multi-step tasks.
Tags: deepseek-v4-pro — Chat, Reasoning, Coding · kimi-k3 — Chat, Reasoning, Coding, Vision
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# deepseek-v4-pro
client.chat.completions.create(model="deepseek-v4-pro", messages=[{"role":"user","content":"Hi"}])
# kimi-k3
client.chat.completions.create(model="kimi-k3", messages=[{"role": "user", "content": "Hi"}])