#HTTP 404: not_found_error: Not Found (request_id: req_011CXY8vzKNXyHFJ7ovGEqin)

1 messages Β· Page 1 of 1 (latest)

soft coral
#

i used to get this as response in telgram bot while trying to use anthropic model,now all models are giving this error

sharp bayBOT
# soft coral i used to get this as response in telgram bot while trying to use anthropic mode...

That HTTP 404 not_found_error is unusual for model calls β€” typically that's an API-level error, not a Moltbot/Clawdbot error.

Before troubleshooting, please run:

moltbot --version

Version mismatches are the #1 cause of weird model errors.

Common culprits for this error:

  1. API key issues β€” Anthropic (and others) rotate keys periodically. Check your ~/.moltbot/config.json5 and verify keys are still valid.

  2. Provider configuration β€” If you recently updated or changed providers, make sure the providers section is correctly formatted. See: https://docs.moltbot.ai/configuration/providers

  3. Gateway restart needed β€” Sometimes the gateway gets out of sync. Try:

sharp bayBOT
# soft coral not working check logs

Found the issue! Look at this line in your logs:

Config was last written by a newer Clawdbot (2026.1.25); current version is 2026.1.24-3.

You have a version mismatch. Your config was written by v2026.1.25 but you're running v2026.1.24-3.

Fix steps:

  1. Update Moltbot:
    cd ~/moltbot-ref && git pull
    pnpm install
    pnpm build
    
#
  1. Or if you use Homebrew:

    brew update && brew upgrade moltbot
    
  2. After updating, restart the gateway:

    moltbot gateway restart
    

The logs show your bot otherwise working fine (messages received, processed successfully with outcome=completed). The version mismatch is likely causing the model API calls to fail.

Let me know once you've updated! 🦐