← All models
Moonshot AI

Kimi K2.5

moonshot-ai:kimi-k2.5

Added January 27, 2026

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