moonshot/kimi-k3
Kimi K3 is Moonshot AI's open-weight flagship: a 2.8T-parameter sparse-MoE model (104B active) with a 1M-token context window and native image understanding. Reasoning is always on, with three effort levels (low / high / max) selected via reasoning_effort, and thinking is streamed as separate reasoning_content deltas. Supports tool calling, JSON Schema structured output and automatic prefix caching. Available through the OpenAI-compatible and Anthropic Messages interfaces.
來源:official_x0.5 · 核驗於 2026-09-10
快取讀取 $0.15/M · 快取寫入 —/M
API 呼叫時用任一 ID 都可以。
moonshot/kimi-k3把 ONEHOP_KEY 佔位符替換為你的 API Key。 建立 →
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-k3",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)