#error

1 messages Β· Page 1 of 1 (latest)

tight pelicanBOT
#

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

autumn pastureBOT
#

You’re authenticated for Codex OAuth (openai-codex), but your model list is trying providers that need different creds:

  • openai/gpt-5-pro β†’ provider openai β†’ requires OPENAI_API_KEY (OpenAI Platform API key). Codex OAuth does not satisfy this.
  • amazon-bedrock/... β†’ requires AWS Bedrock creds/config (AWS keys/role + region + provider entry).
  • google/gemini-3-pro-preview β†’ currently in cooldown because it was failing/rate-limited; it’ll be temporarily skipped until the backoff expires.

Fix (pick one path)

A) Use your existing Codex OAuth (no OpenAI API key):

  • Set your primary model to an openai-codex/... model (the wizard commonly uses openai-codex/gpt-5.3-codex)
  • Remove/avoid openai/... models from agents.defaults.model.fallbacks unless you also add an API key.

Docs: https://docs.openclaw.ai/providers/openai (Option B)

B) Use OpenAI API key (OpenAI Platform):

  • Set OPENAI_API_KEY (env var, or put it in ~/.openclaw/.env so the gateway service can see it)
  • Then openai/... models will work.