GLM 5 Vision Turbo
Z.AI logo

GLM 5 Vision Turbo

glm-5v-turbollms.txt
Z.AI
GLM-5V-Turbo is Zhipu's first multimodal coding foundation model, built for visual programming tasks. It can natively handle multimodal inputs such as images, videos, and text, and is adept at long-horizon planning, complex programming, and action execution; deeply adapted to Agent workflows, it can collaborate closely with agents like Claude Code and OpenClaw to complete the full closed loop of "understand the environment → plan actions → execute tasks."

Pricing

TierPricingCache Read
Input<=32K
$0.704$3.098
$0.169008/M tokens
32K<Input<=128K
$0.986$3.662
$0.253402/M tokens

Input Modalities

  • Text
  • Vision
  • Video

Output Modalities

  • Text

Context length

  • 200K tokens

Max output

  • 131K tokens

Capabilities

  • Thinking
  • Streaming
  • Tool calling
  • Web search
  • URL context
  • Code interpreter
  • Computer use
  • File search
  • Memory tool
  • Document input
  • Structured outputs
  • Citations
  • Prompt caching
  • Background mode
  • Server-side sessions

Providers

Z.AI zai-glm-5v-turbo
Pricing$0.704$3.098
Cache Read$0.169008/M tokens
Pricing$0.986$3.662
Cache Read$0.253402/M tokens
Context200K
Max output128K
Latency1.8S
Throughput52.2TPS
Uptime
66.34% uptime 3 days ago
43.64% uptime 2 days ago
67.65% uptime yesterday

Performance for glm-5v-turbo

Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

Uptime
Loading...
Latency
Loading...
Throughput
Loading...

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="glm-5v-turbo",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is GLM 5 Vision Turbo?

GLM-5V-Turbo is Zhipu's first multimodal coding foundation model, built for visual programming tasks. It can natively handle multimodal inputs such as images, videos, and text, and is adept at long-horizon planning, complex programming, and action execution; deeply adapted to Agent workflows, it can collaborate closely with agents like Claude Code and OpenClaw to complete the full closed loop of "understand the environment → plan actions → execute tasks."