antirez / antirez/ds4

documentation: Pi Agent example has thinking modes wrong

Open
#842 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
C
Stars
22.3k
Forks
2.1k
Avg merge
1d 3h
Merged PRs (30d)
4

Description

The README says:

> DeepSeek V4 Flash has distinct non-thinking, thinking, and Think Max modes.

The same README has this in the Pi Agent configuration example:
```json
"thinkingLevelMap": {
"off": null,
"minimal": "low",
"low": "low",
"medium": "medium",
"high": "high",
"xhigh": "xhigh"
},
```

Assuming the non-thinking, thinking, thinkmax is right, there are these problems in the Pi example:
- `"off": null` one means "off is not supported, do not present it to the user", effectively masking the non-thinking mode from the users
- minimal trough xhigh are actually all mapped to "Thinking" by the model
- max is masked from the users

I have not yet been able to test it against `ds4`, but this mapping is more in line with the declared thinking modes:
```json
"thinkingLevelMap": {
"off": "off",
"minimal": null,
"low": null,
"medium": null,
"high": "high",
"xhigh": null,
"max": "max"
},
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.