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.
Fonte: official_x0.5 · Verificado em 2026-09-10
Leitura de cache $0.15/M · Gravação de cache —/M
Você pode usar qualquer ID em chamadas de API.
moonshot/kimi-k3Substitua o placeholder ONEHOP_KEY pela sua API key. Criar →
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)