Zhipu's previous GLM generation at budget pricing — solid Chinese-language understanding for high-volume support and moderation, one generation behind the flagship.
ValueBest for: Budget GLM for Chinese-language work.
| Specification | Value |
|---|---|
| Bridge price | $0.30 / $0.85 per 1M tokens |
| Cached input | $0.03 per 1M tokens (1/10 of input) |
| Context window | 200K tokens |
| Max output | 16,384 tokens |
| Strengths | Chinese-language, value tier |
from openai import OpenAI
client = OpenAI(base_url="https://bridge.computeindex.net/v1", api_key="sk-bridge-YOUR_KEY")
completion = client.chat.completions.create(
model="glm-5.1",
messages=[{"role": "user", "content": "请用中文写一段产品介绍。"}],
)
print(completion.choices[0].message.content)
Is this the same model as Zhipu's official? Yes — the same model, served through the Bridge OpenAI-compatible gateway.
GLM-5.1 or GLM-5.2? 5.2 is the newer generation with vision input; 5.1 is the budget pick for Chinese-language text workloads.