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
يمكنك استخدام أي من المعرّفَين لاستدعاء هذا النموذج.
moonshot/kimi-k3استبدل placeholder الـ ONEHOP_KEY بمفتاح API الخاص بك. إنشاء مفتاح →
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)