#Glm 4.6 error
1 messages ¡ Page 1 of 1 (latest)
That error is OpenClaw telling you itâs backing off because Z.AI rate-limited you:
Provider zai is in cooldown ⌠(rate_limit)= the Z.AI/GLM API returned a rate-limit style failure (usually HTTP 429), so OpenClaw put all Z.AI auth profiles into a temporary cooldown and wonât send more requests until it expires.- Because you only tried one model (
zai/glm-4.6) and have no usable Z.AI profile right now, you getAll models failed.
What to do:
-
Wait a bit and retry (cooldowns are usually minutes). Restarting the gateway typically wonât âfixâ rate limits.
-
Confirm what OpenClaw thinks is happening:
openclaw models status --json
Look for auth.unusableProfiles entries for provider zai (it should show the reason/cooldown state). If you paste just that section here, we can tell if itâs a short rate-limit cooldown vs something more like billing/credits.
- Check Z.AI-side limits/credits in the Z.AI console for your
ZAI_API_KEY(some keys/plans have very tight QPS / concurrent-request limits).
- Add a fallback model/provider (so you still get replies while Z.AI is cooling down). Docs on failover: https://docs.openclaw.ai/help/faq#model-failover-and-all-models-failed
One extra gotcha: if you ran openclaw models status --probe, that does real API calls and can itself trigger rate limits. So avoid probing repeatedly while debugging.
If you can paste:
openclaw --versionopenclaw models status --jsonâ theauth.unusableProfilesbit- and the log lines right before the cooldown message (from
openclaw logs --follow)
âŚI can be more specific about whether itâs quota, concurrency, or a transient 429.
I did not manage to use this model for a few days and tried daily I think they changed their api format
just configured to GLM .. no problem
so easy switching from kimi to glm coding â
ď¸ď¸
ď¸ď¸kimi was solid for experimenting ~ definitely gets the job done. once i started pushing past small tasks, i hit the wall (52-hour reset).
ď¸ď¸
ď¸ď¸been hearing about glm for a minute, so iâm tapping in now to see what i can really build đ
ď¸ď¸
ď¸ď¸full support for claude code, cline, plus 10+ top coding tools ~ starting at $3/month.
ď¸ď¸
ď¸ď¸solid option if uâre building, testing, or pushing agents without burning credits. limited-time deal live now.
ď¸ď¸
ď¸ď¸tap in here â z.ai/subscribe?ic=GQYRVWJFGM
**â¤ď¸ 1âđď¸ 15â**
not a expert but my kimi plan has to wait 52 hours to reset đ¤Łđ¤Łđ¤Ł
If Z.AI actually changed their API format, youâd typically see a 400/404 âinvalid requestâ style error in the logs. The message you pasted is one layer above that: OpenClaw has already marked the zai provider as temporarily unusable and is refusing to even try it right now (âcooldownâ).
Two important details:
- Cooldowns are triggered not only by ârealâ 429s, but also by some auth/timeout/invalid-request failures (theyâre treated as âfailover-worthyâ), so an upstream API change could still end up showing as âcooldownâ after the first failure.
- To know whatâs really happening we need the original error that caused the cooldown, not the cooldown line itself.
Can you paste these (theyâre safe; no API keys should be shown):
- Your version:
openclaw --version
- The provider/profile health (look for
auth.unusableProfilesforzai):
openclaw models status --json
- A log snippet from the first failure (scroll a bit above the âprovider zai is in cooldownâ line in
openclaw logs --followand paste the firstzai/HTTP error you see â thatâs usually where it says 429 vs 401 vs 400, etc.)
Once we see whether itâs 429 rate limit, insufficient credits/billing, invalid API key (401), or invalid request (400), weâll know whether the fix is âwaitâ, âadd creditsâ, âre-keyâ, or âupdate OpenClaw / provider adapterâ.
If other folks can hit zai/glm-4.6 fine (like Nas just said), itâs very unlikely Z.AI âchanged the API formatâ in a way that only breaks you. This looks much more like your Z.AI account/key is being rate-limited or quota/credits-limited.
A key detail: OpenClawâs âcooldownâ is just a backoff mechanism after a failure â itâs usually minutes (exponential up to ~1h). So if itâs been failing for days, that usually means every time you try, Z.AI is still returning a rate limit / quota error again, and OpenClaw backs off again.
Can you paste:
- The actual upstream error line (a few lines above the cooldown message) from:
openclaw logs --follow
We need to see if itâs HTTP 429 (rate limit), 401 (bad key), or a billing/credits message.
- This (look for
auth.unusableProfilesforzai):
openclaw models status --json
Also double-check youâve got your key set the supported way:
- Docs: https://docs.openclaw.ai/providers/zai
(ZAI_API_KEYon the gateway host, typically viaenv: { ZAI_API_KEY: "..." }or~/.openclaw/.env)
Once you paste the log + models status --json, we can tell you exactly whether itâs âwait for resetâ vs âadd creditsâ vs âkey invalidâ vs âupdate OpenClawâ.
Thanks