Claude Code
Claude Code reaches the Router over the Anthropic Messages API, so it needs configuration only — no plugin, no proxy.
Configure
Create ~/.claude/settings.json (Windows: C:\Users\<username>\.claude\settings.json)
and replace YOUR_API_KEY with a Router API key:
{
"env": {
"ANTHROPIC_BASE_URL": "https://router-api.0g.ai",
"ANTHROPIC_AUTH_TOKEN": "YOUR_API_KEY",
"ANTHROPIC_API_KEY": "",
"ANTHROPIC_MODEL": "glm-5.2",
"ANTHROPIC_DEFAULT_FABLE_MODEL": "glm-5.2",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "glm-5.2",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "0gm-1.0-35b-a3b",
"CLAUDE_CODE_MAX_CONTEXT_TOKENS": "983616"
},
"modelOverrides": {
"claude-sonnet-5": "0gm-1.0-35b-a3b"
}
}
Then run:
claude --permission-mode auto
Private mode
Both models above are TEE-backed ("verifiability": "TeeML"). To guarantee every Claude
Code request runs inside an enclave, create the key with trust mode Private in
Dashboard → API Keys — that key routes only to TeeML providers regardless of what the
client sends. See Privacy & ZDR.
Notes
modelOverridessets the model behind auto mode's permission gate, which runs before every non-read-only action. Use it rather thanANTHROPIC_DEFAULT_SONNET_MODEL: that one replaces the slot, leaving Claude Code unable to recognize the model, so it stops disabling reasoning and a yes/no check turns into a full reasoning pass.ANTHROPIC_DEFAULT_HAIKU_MODELcovers background work — session names forclaude --resume, status for commands like/usage.CLAUDE_CODE_MAX_CONTEXT_TOKENSis the main model's real context window. Without it Claude Code assumes 200 K and compacts at a fifth ofglm-5.2's 1 M.--permission-mode autois required per session, or set{"permissions": {"defaultMode": "auto"}}in~/.claude/settings.json. With an API key, sessions otherwise start in Manual mode.- Everything under
envalso works as shell exports;modelOverridesdoes not.
Models
Claude Code needs a model that serves the Anthropic Messages API:
curl -s https://router-api.0g.ai/v1/models \
| jq -r '.data[] | select(.supported_formats | index("anthropic")) | .id'
Any of those work in any slot. See Models for pricing and context windows.