Publish time
2025/8/11Model Series
GLMInput type
Output type
Context Window
128,000Max Output Length
2,048Input Price
¥4 / 1M tokensOutput Price
¥12 / 1M tokensGLM-4.5V 是智谱新一代基于 MOE 架构的视觉推理模型,以 106B 的总参数量和 12B 激活参数量,在各类基准测试中达到全球同级别开源多模态模型 SOTA,涵盖图像、视频、文档理解及 GUI 任务等常见任务。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
0.18s
Throughput
29.77tps
Uptime
100.00%
Provider Model
bigmodel/glm-4.5v
Supported Parameters
Recent Uptime
Reasoning
-
Supported Response Formats
Request Log Collection
-
Distillable
-
Total Context
128,000
Max Output
2,048
Input Price
¥4 / 1M tokens
Output Price
¥12 / 1M tokens
Compare different providers across Zhinao API
39.00 tok/s
0.47 s
Uptime for z-ai/glm-4.5v across all providers
Zhinao API normalizes requests and responses across providers for you
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.360.cn/v1",
apiKey: process.env.ZHINAO_API_KEY,
});
const response = await client.chat.completions.create({
model: "z-ai/glm-4.5v",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);