プロバイダー
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 だけでマネージドアクセスを利用できます。
料金はどう請求されますか?
呼び出しまたは単位ごとの従量課金で、失敗した生成は課金されません。
今すぐ開始