GLM 5.3
Z.AI logo

GLM 5.3

glm-5.3
Z.AI
New
GLM-5.3 is a coding and agentic reasoning model developed by Z.AI, designed for complex software engineering, long-horizon agent tasks, and vulnerability analysis. Built on GLM-5.2, it incorporates further post-training enhancements to improve coding capabilities, task execution, and token efficiency. The version currently available is an internal preview of GLM-5.3, with a TPM of approximately 1–2 million. As the model is still in testing, service stability is not guaranteed and it is not recommended for production use. We plan to add additional resources and capacity over the coming week to further improve availability and stability.

Pricing

  • Input Tokens: $1.127 /M tokens
  • Output Tokens: $3.944 /M tokens
  • Cache Read: $0.282 /M tokens

Input Modalities

  • Text

Output Modalities

  • Text

Capabilities

  • Thinking
  • Tools
  • Tool calling
  • Structured outputs

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-5.3",
    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.3?

GLM-5.3 is a coding and agentic reasoning model developed by Z.AI, designed for complex software engineering, long-horizon agent tasks, and vulnerability analysis. Built on GLM-5.2, it incorporates further post-training enhancements to improve coding capabilities, task execution, and token efficiency. The version currently available is an internal preview of GLM-5.3, with a TPM of approximately 1–2 million. As the model is still in testing, service stability is not guaranteed and it is not recommended for production use. We plan to add additional resources and capacity over the coming week to further improve availability and stability.