From fe1b008a15d3bc907980afa4f962b03a5ffdad35 Mon Sep 17 00:00:00 2001 From: daniel-j-h <527241+daniel-j-h@users.noreply.github.com> Date: Mon, 13 Jul 2026 21:34:13 +0200 Subject: [PATCH] Fixes thinking levels for pi.dev in README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 785695284..d06c3b668 100644 --- a/README.md +++ b/README.md @@ -896,12 +896,11 @@ 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", + "minimal": null, + "low": null, + "medium": null, "high": "high", - "xhigh": "xhigh" + "max": "max" }, "input": ["text"], "contextWindow": 100000, @@ -924,7 +923,8 @@ Optionally make it the default Pi model in `~/.pi/agent/settings.json`: ```json { "defaultProvider": "ds4", - "defaultModel": "deepseek-v4-flash" + "defaultModel": "deepseek-v4-flash", + "defaultThinkingLevel": "high" } ```