Zhipu's flagship — the strongest Chinese-language understanding of the major labs, with native vision input. Served at $0.40/$1.20, roughly 65% below official pricing.
| Specification | Value |
|---|---|
| Input / output price | $0.40 / $1.20 per 1M tokens |
| Cached input | $0.04 per 1M tokens (1/10 of input) |
| Context window | 200K tokens |
| Max output | 16,384 tokens |
| Strengths | Chinese-language, vision, multimodal |
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.2",
messages=[{
"role": "user",
"content": [
{"type": "text", "text": "What does this screenshot show?"},
{"type": "image_url", "image_url": {"url": "https://example.com/shot.png"}},
],
}],
)
print(completion.choices[0].message.content)
Is this the same GLM-5.2 as Zhipu's official? Yes — the same model, served through the Bridge OpenAI-compatible gateway.
Does Bridge support image input? Yes, via the OpenAI image_url message format, identical to OpenAI's API.