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 groqfrom 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)