#Help

1 messages · Page 1 of 1 (latest)

zealous birch
#

Hey im running my agent on opencode go subscriptioni hit limit on kimi2.6 i guess and wanna switch model whats the easiest way to add a model and jow about if i want to setuo something like this? cat > ~/.config/openclaw/config.json << 'EOF'
{
"models": {
"planner": "Qwen3.6 Plus",
"coder": "DeepSeek V4 Pro",
"reasoning": "Kimi K2.6",
"reasoning_fallback": "GLM-5.1",
"fallback": "GLM-5"
}
}
EOF

royal isleBOT
#

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

remote latchBOT
# zealous birch Hey im running my agent on opencode go subscriptioni hit limit on kimi2.6 i gues...

First thing: what does openclaw --version show? Version mismatch can make model behavior weird.

Your config shape is the main issue: OpenClaw does not use a top-level models: { planner, coder, reasoning... } role map like that. Model selection is basically:

  • default: agents.defaults.model.primary
  • fallbacks: agents.defaults.model.fallbacks
  • available/allowed models: agents.defaults.models when you set an allowlist

For OpenCode Go, the easiest path is usually:

openclaw onboard --auth-choice opencode-go
openclaw models list --provider opencode-go
openclaw models set opencode-go/<model-id>
openclaw models status
remote latchBOT
remote latchBOT
remote latchBOT