Remove a model from list

Somehow a 3rd, non-existent model, made its way onto the list... I can't seem to locate the place to delete it.
🦞 Clawdbot 2026.1.16-2 (49c35c7) — WhatsApp, but make it ✨engineering✨.

Model                                      Input      Ctx      Local Auth  Tags
openai-codex/gpt-5.2                       text+image 266k     no    yes   default,configured
anthropic/claude-opus-4-5                  text+image 195k     no    yes   fallback#1,configured,alias:opus
anthropic/openai-codex:default             -          -        -     -     configured,missing
Solution
You need to edit your Clawdbot config file. The models are defined in
~/.clawdbot/clawdbot.json
under the
models
section.

Look for an entry like this and remove it:
{
  "anthropic/openai-codex:default": {
    "provider": "anthropic",
    "model": "openai-codex:default"
  }
}


Or if it's under a
models
array, remove the corresponding object. After editing, restart the gateway with
clawdbot gateway restart
.

If you want to be safe, you can use
clawdbot model remove anthropic/openai-codex:default
first (if that command exists in your version), then edit the config manually.

The
missing
tag indicates Clawdbot can't find/validate that model provider combination — it got added somehow but isn't a valid configuration.
Was this page helpful?