제공사
Moonshot AI AI 모델
Moonshot AI's Kimi K2 — 1T-parameter MoE with 256K context and 58.6% SWE-bench Pro, via one RunAPI key.
1 models
·
2 variants
·
최저 $0.020
Moonshot AI의 모든 모델
1 models
개요
Moonshot AI builds the Kimi K2 family — 1 trillion total parameters, 32B active per token, 384 experts per layer — optimized for autonomous coding and multi-agent orchestration. kimi-k2.6 reaches 58.6% on SWE-bench Pro and scales Agent Swarm to 300 sub-agents. Both kimi-k2.5 and kimi-k2.6 are available through RunAPI from the OpenAI and Anthropic SDKs.
- 제공사 전체에 공유되는 하나의 API key
- Model skill이 docs와 schema를 워크스페이스로 가져옵니다
- 호출 단위 과금, 약정 없음
- 실패한 생성은 과금되지 않습니다
기능
주요 특징
모델
Moonshot AI의 모든 모델
빠른 시작
Moonshot AI model skill 설치.
모델을 선택하고 skill을 추가하면 코딩 도구가 docs, schema, 가격 메모, 설정 단계를 참조할 수 있습니다.
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k2.6",
"messages": [
{
"role": "user",
"content": "Plan and implement a small CLI tool: scaffold the project, write the commands, add tests, and run them until they pass."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="kimi-k2.6",
messages=[{"role": "user", "content": "Plan and implement a small CLI tool: scaffold the project, write the commands, add tests, and run them until they pass."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "kimi-k2.6",
messages: [{ role: "user", content: "Plan and implement a small CLI tool: scaffold the project, write the commands, add tests, and run them until they pass." }]
});
레퍼런스
Moonshot AI의 모든 변형
FAQ
Moonshot AI에 대한 자주 묻는 질문
공식 Moonshot AI 통합인가요?
RunAPI는 투명한 가격, 기능, 오류 동작을 가진 관리형 API 표면을 제공합니다.
Moonshot AI 계정이 필요한가요?
아니요. RunAPI key만 있으면 관리형 접근을 사용할 수 있습니다.
가격은 어떻게 청구되나요?
호출 또는 단위 기준으로 과금되며 실패한 생성은 청구되지 않습니다.
지금 시작