ZeroClaw supports Z.AI's GLM models through OpenAI-compatible endpoints. This guide covers practical setup options that match current ZeroClaw provider behavior.
ZeroClaw supports these Z.AI aliases and endpoints out of the box:
| Alias | Endpoint | Notes |
|---|---|---|
zai |
https://api.z.ai/api/coding/paas/v4 |
Global endpoint |
zai-cn |
https://open.bigmodel.cn/api/paas/v4 |
China endpoint |
If you need a custom base URL, see docs/custom-providers.md.
zeroclaw onboard \
--provider "zai" \
--api-key "YOUR_ZAI_API_KEY"Edit ~/.zeroclaw/config.toml:
api_key = "YOUR_ZAI_API_KEY"
default_provider = "zai"
default_model = "glm-5"
default_temperature = 0.7| Model | Description |
|---|---|
glm-5 |
Default in onboarding; strongest reasoning |
glm-4.7 |
Strong general-purpose quality |
glm-4.6 |
Balanced baseline |
glm-4.5-air |
Lower-latency option |
Model availability can vary by account/region, so use the /models API when in doubt.
# Test OpenAI-compatible endpoint
curl -X POST "https://api.z.ai/api/coding/paas/v4/chat/completions" \
-H "Authorization: Bearer YOUR_ZAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-5",
"messages": [{"role": "user", "content": "Hello"}]
}'Expected response:
{
"choices": [{
"message": {
"content": "Hello! How can I help you today?",
"role": "assistant"
}
}]
}# Test agent directly
echo "Hello" | zeroclaw agent
# Check status
zeroclaw statusAdd to your .env file:
# Z.AI API Key
ZAI_API_KEY=your-id.secret
# Optional generic key (used by many providers)
# API_KEY=your-id.secretThe key format is id.secret (for example: abc123.xyz789).
Symptom: rate_limited errors
Solution:
- Wait and retry
- Check your Z.AI plan limits
- Try
glm-4.5-airfor lower latency and higher quota tolerance
Symptom: 401 or 403 errors
Solution:
- Verify your API key format is
id.secret - Check the key hasn't expired
- Ensure no extra whitespace in the key
Symptom: Model not available error
Solution:
- List available models:
curl -s "https://api.z.ai/api/coding/paas/v4/models" \
-H "Authorization: Bearer YOUR_ZAI_API_KEY" | jq '.data[].id'- Go to Z.AI
- Sign up for a Coding Plan
- Generate an API key from the dashboard
- Key format:
id.secret(e.g.,abc123.xyz789)