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.
- Una API key compartida entre proveedores
- Los model skills llevan documentación y schemas a tu workspace
- Facturación por llamada, sin compromiso
- Las generaciones fallidas no se cobran
Lo más destacado
Todos los modelos de Z.ai
Instala un model skill de Z.ai.
Elige un modelo y añade su skill para que tu herramienta de código tenga documentación, schemas, notas de precios y pasos de setup.
# 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." }]
});
Todas las variantes de Z.ai
Preguntas frecuentes sobre Z.ai
¿Es una integración oficial de Z.ai?
RunAPI ofrece una superficie API gestionada con precios, capacidades y comportamiento de errores transparentes.
¿Necesito una cuenta de Z.ai?
No. Tu clave RunAPI basta para el acceso gestionado.
¿Cómo se factura el precio?
Por llamada o por unidad medida; las generaciones fallidas no se cobran.