GLM 5.3 CN 在 NextModel 中是什么?
GLM 5.3 CN 是 NextModel 目录中的 Z Ai 模型,常用于 General chat via Z Ai、API workloads 工作负载。当前展示价格为 $1.40 / 1M tokens、输出 $4.40 / 1M tokens,上下文窗口为 — token。
适用场景
- General chat via Z Ai
- API workloads
OpenAI 兼容调用示例
保持 OpenAI SDK 调用方式不变,把 base_url 改为 NextModel,并使用模型目录 ID z-ai--glm-5.3-cn。
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.nextmodel.app/v1"
)
resp = client.chat.completions.create(
model="z-ai/glm-5.3-cn",
messages=[{"role": "user", "content": "Hello from NextModel"}]
)
print(resp.choices[0].message.content)相似替代项
Qwen目录
Available through the NextModel gateway via Qwen.
适用场景General chat via Qwen, API workloads
路由已配置
流式输出
平台整理NextModel gateway catalog (Go origin)
OpenAI目录
Available through the NextModel gateway via OpenAI.
适用场景General chat via OpenAI, API workloads
路由已配置
流式输出
平台整理NextModel gateway catalog (Go origin)
OpenAI目录
Available through the NextModel gateway via OpenAI.
适用场景General chat via OpenAI, API workloads
路由已配置
流式输出
平台整理NextModel gateway catalog (Go origin)
参考
相关文章
GLM-5 CN 缓存安全评测:只有家族数据,CN 本身未测
Family CacheSafety numbers; the CN id itself is unmeasured.
Lin Qiming
上线前如何估算 AI API 成本
Listed price only tells you the unit cost. This walkthrough turns that into a traffic estimate.
Lin Qiming
LLM Gateway: Compare Options and Alternatives
Same OpenAI-compatible base URL, with routing and billing sitting in front of the model.
Zhao Yu'an
常见问题