How to use z.ai - Pony Alpha 2 in Claude Code
Pony Alpha 2 is the latest stealth LLM that is specifically trained for faster response (and I believe the response won’t be as good as GLM-5) but for certain use cases for causal interaction where you want speed more than accuracy it might be useful.
To use Pony Alpha 2 with Claude Code, you just need to configure your env variables in ~/.claude/settings.json or set it in shell before invoking Claude Code
{
"env": {
"ANTHROPIC_AUTH_TOKEN": "ZAI_API_KEY",
"ANTHROPIC_BASE_URL": "https://api.z.ai/api/anthropic",
"API_TIMEOUT_MS": "3000000",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "pony-alpha-2",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "pony-alpha-2",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "pony-alpha-2"
}
}
Reference
- z.ai Discord