Zhipu AI's latest bilingual model with strong Chinese and English capabilities. Features improved reasoning, coding, and tool use with competitive performance on academic benchmarks.
131K tokens
2
available
Cheapest
NVIDIA NIM
$0.00/1M tokens
NVIDIA NIM, Zhipu AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: FreeOut: Free | 100 RPM / 500K TPM | us-east-1us-west-2global | Healthy | 0ms | |
In: $1.00Out: $3.00 | 300 RPM / 500K TPM | us-east-1global | Healthy | 0ms |
Use this model via NVIDIA NIM with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.nvidia.com/v1",
apiKey: process.env.NVIDIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "z-ai/glm-5.1",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using NVIDIA NIM API • OpenAI-compatible SDK