z-aiVision
Z.ai: GLM 4.5V
GLM-4.5V is a vision-language foundation model for multimodal agent applications. Built on a Mixture-of-Experts (MoE) architecture with 106B parameters and 12B activated parameters, it achieves state-of-the-art results in video understanding,...
Context
66k tokens
Input / 1M tokens
$0.60
Output / 1M tokens
$1.80
Benchmark
—
Pricing
Input tokens$0.60 per 1M tokens
Output tokens$1.80 per 1M tokens
Cache read$0.11 per 1M tokens
Technical details
Model IDz-ai/glm-4.5v
Context window66k tokens
Input modalitiestext, image
Output modalitiestext
TokenizerOther
Max output tokens16,384
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'z-ai/glm-4.5v',
messages: [{ role: 'user', content: 'Hello!' }],
})