#openclaw models list
1 messages Β· Page 1 of 1 (latest)
qwen/qwen3.6-plus:free - - - - default,configured,missing
qwen/qwen3.5-flash-02-23 - - - - fallback#1,configured,missing
openrouter/qwen/qwen3.6-plus:free text+image 977k no yes image
openrouter/auto text+image 195k no yes configured,alias:OpenRouter
Your model is pointing at unprefixed models. The allowlist has the openrouter prefix but in your openclaw.json under agents, primary and fallback youβre missing the prefix
It should be this?
openrouter/qwen/qwen3.6-plus:free
Failed to set model: GatewayRequestError: model not allowed: openrouter/qwen/qwen3.6-plus:free
Doesn't work tho
Try to restart the gateway
Here's an example of what the config MIGHT look like depending on how you're set up:
{
"agents": {
"defaults": {
"model": {
"primary": "openrouter/qwen/qwen3.6-plus:free",
"fallbacks": [
"openrouter/qwen/qwen3.5-flash-02-23"
]
},
"models": {
"openrouter/qwen/qwen3.6-plus:free": {},
"openrouter/qwen/qwen3.5-flash-02-23": {},
"openrouter/auto": {}
}
}
}
}