Moonshot Kimi K3 is the flagship 1M-context multimodal reasoning model — Moonshot's most capable release. Cheaper than OpenRouter on NovAI. Requires temperature=1 (handled automatically by NovAI).
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k3",
"messages": [{"role":"user","content":"Summarize the key trade-offs in this 200-page spec."}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="kimi-k3",
messages=[{"role":"user","content":"Summarize the key trade-offs in this 200-page spec."}],
)
print(resp.choices[0].message.content)