Z.ai's (formerly Zhipu AI) flagship open-weight coding model with a 1M-token context window. Mixture-of-Experts architecture with 753B total parameters and ~40B active per request, featuring two cost-balancing reasoning modes. Tops several coding benchmarks while remaining a fraction of the cost of comparable proprietary frontier models. MIT-licensed weights.
1.0M tokens
2
Disponible
Más económico
OpenRouter
$2.60/1M tokens
OpenRouter, Zhipu AI
Ordenados por coste total (entrada y salida por 1 millón de tokens). Selecciona una fila para ver los detalles del proveedor.
| Proveedor | Precio (por 1 M) | Límites | Regiones | Estado | Latencia |
|---|---|---|---|---|---|
Entrada: $0.60Salida: $2.00 | 200 RPM / 300K TPM | us-east-1 | Operativo | 0ms | |
Entrada: $0.60Salida: $2.00 | 300 RPM / 500K TPM | us-east-1global | Operativo | 0ms |
Usa este modelo mediante OpenRouter con un SDK compatible con OpenAI.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.OPENROUTER_API_KEY,
});
const response = await client.chat.completions.create({
model: "z-ai/glm-5.2",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API de OpenRouter · SDK compatible con OpenAI