z-aiVision
Z.ai: GLM 4.6V
GLM-4.6V is a large multimodal model designed for high-fidelity visual understanding and long-context reasoning across images, documents, and mixed media. It supports up to 128K tokens, processes complex page layouts...
Context
131k tokens
Input / 1M tokens
$0.30
Output / 1M tokens
$0.90
Benchmark
—
Pricing
Input tokens$0.30 per 1M tokens
Output tokens$0.90 per 1M tokens
Cache read$0.06 per 1M tokens
Technical details
Model IDz-ai/glm-4.6v
Context window131k tokens
Input modalitiesimage, text, video
Output modalitiestext
TokenizerOther
Max output tokens32,768
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.6v',
messages: [{ role: 'user', content: 'Hello!' }],
})