Moonshot AI KI-Modelle
Moonshot AI's Kimi K2 — 1T-parameter MoE with 256K context and 58.6% SWE-bench Pro, via one RunAPI key.
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.
- Ein API Key für mehrere Anbieter
- Model Skills bringen Docs und Schemas in deinen Workspace
- Abrechnung pro Aufruf, ohne Verpflichtung
- Fehlgeschlagene Generierungen werden nicht berechnet
Was heraussticht
Alle Modelle von Moonshot AI
Installiere einen Moonshot AI Model Skill.
Wähle ein Modell und füge seinen Skill hinzu, damit dein Coding-Tool Docs, Schemas, Preishinweise und Setup-Schritte kennt.
# 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." }]
});
Jede Variante von Moonshot AI
Häufige Fragen zu Moonshot AI
Ist das eine offizielle Moonshot AI-Integration?
RunAPI stellt eine verwaltete API-Oberfläche mit transparenten Preisen, Funktionen und Fehlerverhalten bereit.
Brauche ich ein Moonshot AI-Konto?
Nein. Dein RunAPI Key reicht für den verwalteten Zugriff.
Wie wird abgerechnet?
Pro Aufruf oder Einheit; fehlgeschlagene Generierungen werden nicht berechnet.