Back to Models

Kimi K2.5

moonshotai/kimi-k2.5
Moonshot AI Chat

Description

Kimi K2.5 by Moonshot AI. This model supports chat capabilities. Main use: Vision.

Specifications

Context Length:
262K
Parameters:
1T
Input Modalities:
Text, Image
Output Modalities:
Text
Main Use:
Vision

Pricing

Input Cost:
1.00 Credits / 1M tokens
Output Cost:
5.60 Credits / 1M tokens

Usage Example

const { Client } = require('ai-proxy-sdk');

const client = new Client({
  consumerKey: process.env.BITMESH_CONSUMER_KEY,
  consumerSecret: process.env.BITMESH_CONSUMER_SECRET,
  baseUrl: process.env.BITMESH_API_BASE_URL || 'https://api.bitmesh.ai'
});

const response = await client.chat.completions.create({
  model: 'moonshotai/kimi-k2.5',
  messages: [
    { role: 'system', content: 'You are a helpful assistant.' },
    { role: 'user', content: 'What are some fun things to do with AI?' }
  ],
  max_tokens: 1000
});