Z.ai
Z.ai's GLM — MIT-licensed MoE LLMs from 128K to 200K context, top open-weight SWE-bench scores, via one RunAPI key.
Z.ai builds the GLM family of MIT-licensed Mixture-of-Experts language models for coding and agentic workflows. The line spans GLM-4.5 (355B / 32B active, 128K context) through GLM-5.1 (754B / 40B active, 200K context), which holds the top open-weight SWE-bench Pro score at 58.4%. All are available through RunAPI from the OpenAI and Anthropic SDKs with per-token billing.
- مفتاح API واحد مشترك بين جميع المزودين
- تنقل model skills التوثيق والـschemas إلى مساحة عملك
- فوترة حسب كل طلب، بلا التزام
- لا تُفرض رسوم على عمليات التوليد الفاشلة
ما يميزها
جميع نماذج Z.ai
ثبّت model skill من Z.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": "glm-5.1",
"messages": [
{
"role": "user",
"content": "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="glm-5.1",
messages=[{"role": "user", "content": "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause."}]
)
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: "glm-5.1",
messages: [{ role: "user", content: "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause." }]
});
كل إصدار من Z.ai
الأسئلة الشائعة حول Z.ai
هل هذا تكامل رسمي مع Z.ai؟
يوفّر RunAPI واجهة API مُدارة مع تسعير وقدرات وسلوك أخطاء واضح وشفاف.
هل أحتاج إلى حساب Z.ai؟
لا — يكفي مفتاح RunAPI الخاص بك للوصول المُدار.
ما مقدار زمن الاستجابة الإضافي بسبب العبور عبر البروكسي؟
عادةً أقل من 20 مللي ثانية. يحتفظ RunAPI بطبقة البروكسي قريبة من مناطق تنفيذ النماذج.
هل يتم تخزين الصور / الفيديوهات مؤقتًا؟
تُخزَّن المخرجات المُولَّدة ويمكن استرجاعها عبر معرّف المهمة. لا يتم تخزين المدخلات مؤقتًا.
هل يمكنني استخدام مفتاحي الخاص؟
ليس حاليًا — تستند الطلبات إلى وصول مُدار بواسطة RunAPI.