Back to Models

Kimi K3

moonshotai/kimi-k3 Try in Playground
Moonshot AI Chat

Description

Kimi K3 by Moonshot AI. This model supports chat capabilities. Main use: Reasoning.

Specifications

Context Length:
256K
Parameters:
2.8T
Input Modalities:
Text, Image
Output Modalities:
Text
Main Use:
Reasoning

Pricing

Input Cost:
6.00 Credits / 1M tokens
Output Cost:
30.00 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-k3',
  messages: [
    { role: 'system', content: 'You are a helpful assistant.' },
    { role: 'user', content: 'What are some fun things to do with AI?' }
  ],
  max_tokens: 1000
});