GLM-4.5V

by Z.ai

zai/glm-4.5v

A vision-language model taking images, video, and documents alongside text.

Modalities
Text, Image, Video, File
In / out per 1M
$1.20 / $3.60
Released
Aug 11, 2025

Overview

A vision-language model taking images, video, and documents alongside text. It is billed from the same balance as every other model and API here, and the price of each call comes back in the response.

Pricing

The default plan, in USD per million tokens.

MeterPer 1M tokens
Input$1.20
Output$3.60
Cache read$0.22
Cache write$1.20

Your balance and per-call records come from /v1/credits and /v1/generation.

Use it

Point your client at the gateway and pass this model id. Nothing else changes.

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://gateway.agentsky.dev/v1",
  apiKey: process.env.AGENTSKY_API_KEY, // ast_…
});

const completion = await client.chat.completions.create({
  model: "zai/glm-4.5v",
  messages: [{ role: "user", content: "Summarise this ticket." }],
});
console.log(completion.usage.cost); // USD, in the response

Questions

GLM-4.5V — AgentSky