GLM-5 Turbo from Zhipu AI is a speed-optimized member of the GLM-5 family. Here's the pricing and how to use it.
| Model | Input | Output | Note |
|---|---|---|---|
| glm-5-turbo | $1.08 | $3.692 | Speed-optimized |
| glm-5 | $0.671 | $3.021 | Balanced |
| glm-5.1 | $1.007 | $4.028 | Reasoning |
| glm-5.2 | $1.343 | $4.699 | Flagship |
| glm-4.6v-flash | FREE | FREE | Free vision tier |
from openai import OpenAI
client = OpenAI(
api_key="nvai-your-key",
base_url="https://aiapi-pro.com/v1"
)
resp = client.chat.completions.create(
model="glm-5-turbo",
messages=[{"role": "user", "content": "Hello!"}]
)
print(resp.choices[0].message.content)
Test at zero cost with glm-4.6v-flash — a genuinely free model on NovAI, no token limit and no credit card. Great for prototyping before moving to GLM-5 Turbo.
Use GLM-5 Turbo plus the free GLM-4.6V Flash tier on one endpoint.
GLM-5 Turbo costs $1.08 per 1M input tokens and $3.692 per 1M output tokens on NovAI, at the upstream price with 0% platform markup.
Yes. GLM-4.6V Flash is completely free on NovAI with no token limit and no credit card required — ideal for testing before using paid GLM-5 Turbo or GLM-5.2.
GLM-5 ($0.671/$3.021) is balanced, GLM-5 Turbo ($1.08/$3.692) is speed-optimized, and GLM-5.2 ($1.343/$4.699) is the flagship for the highest quality. All are OpenAI-compatible on NovAI.