I'm trying to change the think mode via the telegram /think command for model deepseek-v4-flash:cloud but the only option is "off". This is my models block in openclaw.json:
"models": {
"mode": "merge",
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434",
"api": "ollama",
"apiKey": "OLLAMA_API_KEY",
"models": [
{
"id": "kimi-k2.5:cloud",
"name": "kimi-k2.5:cloud",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 128000,
"maxTokens": 8192,
"compat": {
"supportsTools": false
}
},
{
"id": "minimax-m2.7:cloud",
"name": "minimax-m2.7:cloud",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 128000,
"maxTokens": 8192
},
{
"id": "glm-5.1:cloud",
"name": "glm-5.1:cloud",
"reasoning": true,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 202752,
"maxTokens": 8192,
"compat": {
"supportsTools": true
}
},
{
"id": "qwen3-embedding:0.6b",
"name": "qwen3-embedding:0.6b",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 32768,
"maxTokens": 8192,
"compat": {
"supportsTools": false
}
},
{
"id": "kimi-k2.6:cloud",
"name": "kimi-k2.6:cloud",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 262144,
"maxTokens": 8192,
"compat": {
"supportsTools": true
}
},
// ... some more models after this, deepseek isn't listed though
]
}
}
}
And here's my agents.defaults model and models blocks
"model": {
"primary": "ollama/kimi-k2.6:cloud"
},
"models": {
"ollama/kimi-k2.6:cloud": {},
"ollama/glm-5.1:cloud": {},
"ollama/gemma4:31b-cloud": {},
"ollama/deepseek-v4-flash:cloud": {}
},
Response: Thinking level "high" is not supported for ollama/deepseek-v4-flash:cloud. Use one of: off.