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 엔드포인트chat/completions
모델 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

지원

도구 사용

지원

WaveSpeedAI에서 Kimi K3 체험

통합 API를 통해 Kimi K3 액세스 — OpenAI 호환, 콜드 스타트 없음, 투명한 가격.

Kimi K3에 대해 자주 묻는 질문

Kimi K3 API 비용은 얼마인가요?+

WaveSpeedAI 가격: 입력 토큰 100만 개당 $3.00, 출력 토큰 100만 개당 $15.00. 프롬프트 캐싱과 배치 처리는 별도로 청구되며 긴 반복 작업에서 실질 비용을 줄여 줍니다.

Kimi K3의 컨텍스트 윈도우는 얼마나 되나요?+

Kimi K3은 요청당 최대 1049K 컨텍스트 토큰과 최대 — 출력 토큰을 지원합니다.

Kimi K3은 OpenAI 호환인가요?+

WaveSpeedAI는 https://llm.wavespeed.ai/v1의 OpenAI 호환 Chat Completions 인터페이스를 통해 Kimi K3을 제공합니다. 대부분의 OpenAI SDK 클라이언트는 base URL과 API 키를 변경해 사용할 수 있으며, 선택 필드는 모델에 따라 다릅니다.

Kimi K3을 어떻게 시작하나요?+

WaveSpeedAI에 로그인하고 Access Keys에서 API 키를 만든 다음, 위에 표시된 모델 ID로 https://llm.wavespeed.ai/v1/chat/completions에 요청을 보내세요. 제공 여부, 기능 및 가격은 최신 모델 카탈로그를 확인하세요.

관련 LLM API

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