← All models
Kimi K2.5 is Moonshoot AI's current SOTA model. It was pretrained on 15T tokens on both visual and text tokens to create a native multimodal model. Kimi K2.5 delivers performance on coding and vision tasks, and has been trained extensively using a new 'agent-swarm' paradigm.
Usage
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.tributary.cc/openai/v1",
apiKey: "<TRIBUTARY_API_KEY>",
});
const completion = await client.chat.completions.create({
model: "moonshot-ai:kimi-k2.5",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(completion.choices[0].message.content); Providers
openrouter