From a233482f273e2d5084548df38df791e0ab4ba668 Mon Sep 17 00:00:00 2001 From: paride Date: Thu, 3 Sep 2026 04:18:39 +0200 Subject: [PATCH] docs: fix Pi Agent thinkingLevelMap for Flash modes Expose off / high / max to match DeepSeek V4 Flash's non-thinking, thinking, and Think Max modes; hide intermediate Pi levels that all collapsed to normal thinking. Fixes #842 --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 663232de8d..4f5d2aa98b 100644 --- a/README.md +++ b/README.md @@ -1403,12 +1403,13 @@ For **Pi**, add a provider to `~/.pi/agent/models.json`: "name": "DeepSeek V4 Flash (ds4.c local)", "reasoning": true, "thinkingLevelMap": { - "off": null, - "minimal": "low", - "low": "low", - "medium": "medium", + "off": "off", + "minimal": null, + "low": null, + "medium": null, "high": "high", - "xhigh": "xhigh" + "xhigh": null, + "max": "max" }, "input": ["text"], "contextWindow": 100000,