New release · Aug 2026

GLM-5.3 Flash

Z.AI’s first natively multimodal GLM-5 model — frontier coding, agentic and vision work at a tenth of GLM-5.2’s price.

By Z.AI · Multimodal agentic · MIT

Context

1M tokens

Modality

Text + Vision

Architecture

MoE + hybrid attention

License

MIT

Per 1M tokens $0.15 in · $0.50 out
Model details

Specs & substance

Developed by
Z.AI
Model family
GLM
Use case
Multimodal agentic
Modality
Text + Vision
Context window
1M tokens
Architecture
MoE + hybrid attention
Version
5.3 Flash
License
MIT
Pricing
$0.15 in · $0.50 out · $0.03 cache read
Released
Aug 2026
Endpoint
parasail-glm-53-flash

GLM-5.3 Flash is the first natively multimodal model in Z.AI’s GLM-5 series, built for coding and agentic workloads that mix text and images — frontend and game development, 3D simulation, browser and computer use — where the result has to be looked at, not just compiled. It outperforms GLM-5.2 across Z.AI’s coding and agentic benchmark suite while approaching Claude Opus 4.8, and scores 57 on the Artificial Analysis Intelligence Index v4.1.1 at a fraction of the cost that level of intelligence used to carry.

The model has 320B total parameters with 18B active across 45 layers — roughly half the activated parameters and half the layers of the GLM-4.5 series at a similar total size. It is the first GLM to combine linear and sparse attention in one hybrid stack: linear attention models local dependencies while a lightweight sparse indexer retrieves global context, with IndexPool compressing four indexer key vectors into one to hold latency and memory down at a 1M-token context. Manifold-Constrained Hyper-Connections (mHC) improve scaling efficiency, and pretraining runs on Z.AI’s 30T-token multimodal corpus.

Parasail serves GLM-5.3 Flash on a global fleet of current-gen GPUs behind a single OpenAI-compatible endpoint — with per-token pricing, no minimums, and dedicated capacity options when you need guaranteed throughput.

Benchmarks

Measured on the work that matters

GLM-5.3 Flash model-card results alongside selected comparison models.

Benchmark
GLM-5.3 Flash Z.AI · Open
GLM-5.2 Z.AI · Open
DeepSeek-V4-Vision-Exp DeepSeek · Open
Claude Opus 4.8 Anthropic · Closed
GPT-5.6 Terra OpenAI · Closed
Gemini 3.7 Flash Google · Closed
Terminal Bench 2.1 %
84.3
81.0
83.9
85.0
87.4
85.8
DeepSWE v1.1 %
63.4
46.2
59.3
58.0
69.6
65.3
NL2Repo %
56.3
48.9
57.7
69.7

All scores are self-reported by Z.AI in the GLM-5.3-Flash model card on Hugging Face ; the comparison columns are Z.AI’s own evaluations, published with the release. Where a benchmark is reported both with and without tool augmentation, we show the lower, no-tools number.

Integrate

Drop-in via the OpenAI SDK

Point any OpenAI-compatible client at Parasail and change the model name. That's it.

python parasail · GLM-5.3 Flash
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.parasail.io/v1"
)

response = client.chat.completions.create(
    model="zai-org/GLM-5.3-Flash",
    messages=[
        {"role": "user", "content": "Implement Hello World in Python"}
    ],
    stream=True,
    stream_options={"include_usage": True},
    top_p=1,
    max_tokens=1000,
    temperature=1
)

for chunk in response:
    if chunk.choices and chunk.choices[0].delta.content is not None:
        print(chunk.choices[0].delta.content, end="", flush=True)
More models

Explore the library

All models

Run GLM-5.3 Flash on Parasail.

Call it on an OpenAI-compatible endpoint with per-token pricing, or ask us about dedicated capacity.