#openai rate limit hit..

1 messages ยท Page 1 of 1 (latest)

oblique dirge
#

what to do

past rapidsBOT
red nicheBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> โœ… Mark Solution

past rapidsBOT
muted rockBOT
#

Need the exact error to tell which kind of limit it is.

Please paste these:

openclaw --version
openclaw config get agents.defaults.model.primary
openclaw models status

If you can, also paste the 429 line from:

openclaw logs --follow

Quick rule of thumb:

#
  • openai/* = direct OpenAI API key route
    โ†’ usually billing/quota/rate limit on the OpenAI Platform side
  • openai-codex/* = ChatGPT/Codex OAuth route
    โ†’ limits can be different from normal ChatGPT web usage

So the fix is usually one of these:

  1. wait for the quota window to reset
  2. switch auth route (openai-codex/* vs openai/*)
  3. add a fallback model so OpenClaw keeps replying when OpenAI is limited:
openclaw models fallbacks add <provider/model>

Docs:

oblique dirge
#

what are the free frontier models? i believe i have gemini credits...

muted rockBOT
#

I wouldnโ€™t trust a hardcoded โ€œfree frontier modelsโ€ list here, it changes too fast.

A couple important distinctions:

  • Gemini credits are a Google path, not the same as โ€œfree modelsโ€
  • OpenRouter free models are a separate bucket entirely

If you already have Gemini credits, Iโ€™d use that instead of chasing random free tiers.

If you want to use Gemini in OpenClaw

Set up Google auth, then list what your account can actually use:

openclaw onboard --auth-choice gemini-api-key
openclaw models list --provider google
#

If youโ€™re using Gemini CLI OAuth instead:

openclaw models auth login --provider google-gemini-cli --set-default
openclaw models list --provider google-gemini-cli

If you meant โ€œwhat free models can OpenClaw scan?โ€

Thatโ€™s the OpenRouter free catalog:

openclaw models scan --no-probe

But that is not your Gemini-credit pool.

Best place for current model picks

oblique dirge
#

user1@user1:~$ openclaw models auth login --provider google-gemini-cli --set-default

๐Ÿฆž OpenClaw 2026.4.15 (041266a) โ€” Less clicking, more shipping, fewer "where did that file go" moments.

โ”‚
โ—‡ Google Gemini CLI caution โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ โ”‚
โ”‚ This is an unofficial integration and is not endorsed by Google. โ”‚
โ”‚ Some users have reported account restrictions or suspensions after using third-party โ”‚
โ”‚ Gemini CLI and Antigravity OAuth clients. โ”‚
โ”‚ Proceed only if you understand and accept this risk. โ”‚
โ”‚ โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
โ”‚
โ—† Continue with Google Gemini CLI OAuth?
โ”‚ โ—‹ Yes / โ— No

am i at risk?

muted rockBOT
#

Yes, there is non-zero risk. The warning is there for a reason.

Short version:

  • google-gemini-cli OAuth = unofficial path
  • some users have reported account restrictions/suspensions
  • exact odds are unclear, but I would treat it as real risk, not just legal boilerplate

If this is your main Google account, I would not use that route.

Safer option

Use the official Gemini API key path instead:

openclaw onboard --auth-choice gemini-api-key