feat: get_available_thinking_levels rpc (#6865)

This commit is contained in:
Cristina Poncela Cubeiro
2026-07-20 16:29:10 +02:00
committed by GitHub
parent 1942b2600f
commit c179395218
5 changed files with 63 additions and 0 deletions
+20
View File
@@ -313,6 +313,26 @@ Response:
}
```
#### get_available_thinking_levels
List the thinking levels supported by the current model. Returns `["off"]` for a model without reasoning support.
```json
{"type": "get_available_thinking_levels"}
```
Response:
```json
{
"type": "response",
"command": "get_available_thinking_levels",
"success": true,
"data": {
"levels": ["off", "minimal", "low", "medium", "high"]
}
}
```
### Queue Modes
#### set_steering_mode