Seedream 5.0 Pro เปิดให้ใช้งานแล้ว | ลองใช้ในเครื่องสร้างรูปภาพ →
เข้าสู่ระบบ
moonshot
moonshotai/kimi-k3

moonshotai/kimi-k3

วันที่เผยแพร่: 2026-07-16

1,048,576 context · $3.00/M input tokens · $15.00/M output tokens

Kimi K3 is Moonshot AI's flagship open-weight multimodal reasoning model. It is built for complex coding, knowledge work, and long-horizon agentic workflows, with strong performance on large codebase navigation, tool use, debugging, visual reasoning, and iterative problem solving. WaveSpeed AI exposes moonshotai/kimi-k3 through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.

ราคา

จ่ายตามการใช้งาน

ไม่มีค่าใช้จ่ายล่วงหน้า จ่ายเฉพาะสิ่งที่คุณใช้

อินพุต$3.00 / M Tokens
เอาต์พุต$15.00 / M Tokens
Cache Read$0.30 / M Tokens

ลองใช้โมเดล

moonshotai/kimi-k3
ออนไลน์
moonshot
สวัสดี! ฉันคือผู้ช่วย AI พร้อมช่วยคุณ ต้องการให้ช่วยอะไรไหม?
พร้อมใช้โมเดลนี้ใน coding agent บนเครื่องหรือยัง?ตั้งค่า agent

การใช้งาน API

ใช้ตัวอย่างโค้ดต่อไปนี้เพื่อผสานรวมกับ API ของเรา:

import OpenAI from 'openai';

if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
  apiKey: process.env.WAVESPEED_API_KEY,
  baseURL: 'https://llm.wavespeed.ai/v1',
  timeout: 120_000,
  maxRetries: 2,
});

try {
  const response = await client.chat.completions.create({
    model: 'moonshotai/kimi-k3',
    messages: [{ role: 'user', content: 'Hello!' }],
  });
  console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
  console.error('LLM request failed:', error);
  process.exitCode = 1;
}

แนะนำโมเดล

Moonshot AI: Kimi K3

Kimi K3 is Moonshot AI's flagship open-weight multimodal reasoning model. It is designed for complex coding, knowledge work, and long-horizon agentic workflows, and is especially strong at large repository understanding, tool use, debugging, and iterative work across images, logs, tests, and runtime feedback.

WaveSpeed AI exposes moonshotai/kimi-k3 through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.


Why Use Kimi K3

  • Flagship Kimi model for advanced reasoning and software work
  • Strong long-horizon coding performance across large repositories and multi-step tasks
  • Well suited for agentic workflows, tool use, and structured outputs
  • Native multimodal capability for image-based understanding and visual iteration
  • Long-context support for document analysis, code review, and extended multi-turn sessions

Key Features

  • Context Window: 1,000,000 tokens
  • Max Output: up to 131,072 tokens by default
  • Vision Input: Supported
  • Function Calling: Supported
  • Structured Outputs: Supported
  • Reasoning: Enabled by default
  • Best Fit: coding, reasoning, agents, multimodal workflows, long-context tasks

Specifications

SpecificationValue
ProviderMoonshot AI
Model IDmoonshotai/kimi-k3
Model FamilyKimi K3
PositioningFlagship open-weight multimodal reasoning model
Parameters2.8T
Context Window1,000,000 tokens
Max Output131,072 tokens by default
VisionSupported
Function CallingSupported
Structured OutputsSupported
Recommended Workloadscomplex coding, reasoning, agentic workflows, multimodal analysis, long-context tasks

Architecture Notes

Kimi K3 is built with KDA (Kimi Delta Attention) and Attention Residuals to improve computational efficiency at scale. It is positioned for demanding workflows such as long-horizon programming, knowledge-intensive tasks, and multimodal reasoning over both text and images.


How to Use

Chat Completions

Use Chat Completions when you want a straightforward OpenAI-compatible integration path for conversational, coding, and agent workflows.

Python

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://llm.wavespeed.ai/v1"
)

response = client.chat.completions.create(
    model="moonshotai/kimi-k3",
    messages=[
        {"role": "user", "content": "Review this bug report and identify the most likely root cause."}
    ]
)

print(response.choices[0].message.content)

cURL

curl https://llm.wavespeed.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "moonshotai/kimi-k3",
    "messages": [
      {"role": "user", "content": "Review this bug report and identify the most likely root cause."}
    ]
  }'

Multimodal Example

Kimi K3 supports native visual understanding, making it a strong fit for tasks such as screenshot debugging, UI review, diagram analysis, and image-grounded reasoning.

Python

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://llm.wavespeed.ai/v1"
)

response = client.chat.completions.create(
    model="moonshotai/kimi-k3",
    messages=[
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Describe the issue shown in this screenshot."},
                {
                    "type": "image_url",
                    "image_url": {
                        "url": "data:image/png;base64,BASE64_IMAGE_DATA"
                    }
                }
            ]
        }
    ]
)

print(response.choices[0].message.content)

Tool Use and Structured Output

Kimi K3 is well suited for applications that combine reasoning with tools and schema-constrained outputs.

Common use cases include:

  • debugging agents that inspect logs, test output, and code
  • repository assistants that navigate large codebases
  • multimodal workflows that combine screenshots with implementation tasks
  • structured extraction pipelines that require JSON output

Notes

  • Official upstream model name is kimi-k3
  • WaveSpeed model ID is drafted here as moonshotai/kimi-k3
  • Reasoning is part of the model's default behavior
  • Best paired with agentic and long-context workflows where tool use and iterative refinement matter

ข้อมูล

ผู้ให้บริการmoonshot
ประเภทllm

ฟังก์ชันที่รองรับ

อินพุต
ข้อความรูปภาพ
เอาต์พุต
ข้อความ
บริบท1,048,576
เอาต์พุตสูงสุด-
Vision✓ รองรับ
Function Calling✓ รองรับ

คู่มือการเข้าถึง API

Base URLhttps://llm.wavespeed.ai/v1
API Endpointchat/completions
Model IDmoonshotai/kimi-k3

Kimi K3 API

moonshotai/kimi-k3

Kimi K3 is Moonshot AI's flagship open-weight multimodal reasoning model. It is built for complex coding, knowledge work, and long-horizon agentic workflows, with strong performance on large codebase navigation, tool use, debugging, visual reasoning, and iterative problem solving. WaveSpeed AI exposes `moonshotai/kimi-k3` through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.

อินพุต

$3 /M

เอาต์พุต

$15 /M

คอนเท็กซ์

1049K

Vision

รองรับ

การใช้เครื่องมือ

รองรับ

ลองใช้ Kimi K3 บน WaveSpeedAI

เข้าถึง Kimi K3 ผ่าน API แบบรวมของเรา — เข้ากันได้กับ OpenAI ไม่มี cold start ราคาโปร่งใส

คำถามที่พบบ่อยเกี่ยวกับ Kimi K3

Kimi K3 API ราคาเท่าไหร่?+

ราคาบน WaveSpeedAI: $3.00 ต่อล้านโทเคนอินพุต และ $15.00 ต่อล้านโทเคนเอาต์พุต Prompt caching และ batch processing คิดค่าบริการแยกและช่วยลดต้นทุนที่แท้จริงสำหรับภาระงานที่ยาวและทำซ้ำ

Kimi K3 มี context window เท่าใด?+

Kimi K3 รองรับสูงสุด 1049K โทเคนคอนเท็กซ์ และสูงสุด — โทเคนเอาต์พุตต่อคำขอ

Kimi K3 เข้ากันได้กับ OpenAI หรือไม่?+

WaveSpeedAI ให้บริการ Kimi K3 ที่ https://llm.wavespeed.ai/v1 ผ่านอินเทอร์เฟซ Chat Completions ที่เข้ากันได้กับ OpenAI ไคลเอนต์ OpenAI SDK ส่วนใหญ่ใช้งานได้โดยเปลี่ยน base URL และ API key ส่วนฟิลด์เสริมขึ้นอยู่กับโมเดล

จะเริ่มใช้ Kimi K3 ได้อย่างไร?+

ลงชื่อเข้าใช้ WaveSpeedAI สร้าง API key ใน Access Keys แล้วส่งคำขอไปยัง https://llm.wavespeed.ai/v1/chat/completions โดยใช้ model id ที่แสดงด้านบน ตรวจสอบความพร้อมใช้งาน ความสามารถ และราคาจากแคตตาล็อกโมเดลปัจจุบัน

LLM API ที่เกี่ยวข้อง

MoonshotAI: Kimi K3 | Moonshot Multimodal LLM API Pricing | WaveSpeedAI