Moonshot AI نماذج الذكاء الاصطناعي
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.
- مفتاح API واحد مشترك بين جميع المزودين
- تنقل model skills التوثيق والـschemas إلى مساحة عملك
- فوترة حسب كل طلب، بلا التزام
- لا تُفرض رسوم على عمليات التوليد الفاشلة
ما يميزها
جميع نماذج Moonshot AI
ثبّت model skill من Moonshot AI.
اختر نموذجًا وأضف مهارته حتى تحصل أداة البرمجة على التوثيق والـschemas وملاحظات الأسعار وخطوات الإعداد.
# 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
الأسئلة الشائعة حول Moonshot AI
هل هذا تكامل رسمي مع Moonshot AI؟
يوفّر RunAPI واجهة API مُدارة مع تسعير وقدرات وسلوك أخطاء واضح وشفاف.
هل أحتاج إلى حساب Moonshot AI؟
لا — يكفي مفتاح RunAPI الخاص بك للوصول المُدار.
ما مقدار زمن الاستجابة الإضافي بسبب العبور عبر البروكسي؟
عادةً أقل من 20 مللي ثانية. يحتفظ RunAPI بطبقة البروكسي قريبة من مناطق تنفيذ النماذج.
هل يتم تخزين الصور / الفيديوهات مؤقتًا؟
تُخزَّن المخرجات المُولَّدة ويمكن استرجاعها عبر معرّف المهمة. لا يتم تخزين المدخلات مؤقتًا.
هل يمكنني استخدام مفتاحي الخاص؟
ليس حاليًا — تستند الطلبات إلى وصول مُدار بواسطة RunAPI.