moonshotai/kimi-k2-instruct
Kimi K2 is Moonshot AI's state-of-the-art Mixture-of-Experts (MoE) language model with 1 trillion total parameters and 32 billion activated parameters. Designed for agentic intelligence, it excels at tool use, coding, and autonomous problem-solving across diverse domains. This model currently redirects to the latest 0905 version.
This model currently redirects to the latest 0905 version, which offers improved performance, 256K context, and improved tool use capabilities, and better coding capabilities over the original model.
Experience moonshotai/kimi-k2-instruct
on Groq:
pip install groq
from groq import Groq
client = Groq()
completion = client.chat.completions.create(
model="moonshotai/kimi-k2-instruct",
messages=[
{
"role": "user",
"content": "Explain why fast inference is critical for reasoning models"
}
]
)
print(completion.choices[0].message.content)