Bug Description
The openclaw models list CLI command shows available: false for local Ollama models that are actually running and working correctly.
Reproduction
- Have Ollama running with a model loaded (e.g.
qwen3.6:35b-a3b)
- Confirm it is working in active sessions
- Run
openclaw models list --json
Actual Behavior
{
"key": "ollama/qwen3.6:35b-a3b",
"name": "qwen3.6:35b-a3b",
"available": false,
"local": true,
"missing": false
}
Expected Behavior
available should be true when the Ollama service is running and the model is loaded.
Verification
curl http://127.0.0.1:11434/api/tags returns the model
session_status shows the model is active and working
openclaw status shows gateway is running
Environment
OpenClaw version: 2026.6.5 (5181e4f)
OS: linux 6.6.87.2-microsoft-standard-WSL2 (x64)
Node: 22.22.0
Ollama: service running on 127.0.0.1:11434
Model: ollama/qwen3.6:35b-a3b
Notes
This is a display bug - the model works fine in active sessions. The available field appears to be hardcoded to false for local models rather than actually checking Ollama connectivity.
Bug Description
The
openclaw models listCLI command showsavailable: falsefor local Ollama models that are actually running and working correctly.Reproduction
qwen3.6:35b-a3b)openclaw models list --jsonActual Behavior
{ "key": "ollama/qwen3.6:35b-a3b", "name": "qwen3.6:35b-a3b", "available": false, "local": true, "missing": false } Expected Behavior available should be true when the Ollama service is running and the model is loaded. Verification curl http://127.0.0.1:11434/api/tags returns the model session_status shows the model is active and working openclaw status shows gateway is running Environment OpenClaw version: 2026.6.5 (5181e4f) OS: linux 6.6.87.2-microsoft-standard-WSL2 (x64) Node: 22.22.0 Ollama: service running on 127.0.0.1:11434 Model: ollama/qwen3.6:35b-a3b Notes This is a display bug - the model works fine in active sessions. The available field appears to be hardcoded to false for local models rather than actually checking Ollama connectivity.