clawdbot-dingtalk 0.2.9 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,15 +49,23 @@ Edit `~/.clawdbot/clawdbot.json`:
|
|
|
49
49
|
}
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
## DashScope Thinking
|
|
52
|
+
## DashScope Thinking Mode (Native)
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
DashScope's `enable_thinking` is **natively supported** via the `/think` command. No proxy is needed.
|
|
55
55
|
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
To enable thinking mode for a session:
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
/think on
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Or use one-shot thinking for a single message:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
/t! on 请帮我分析这段代码
|
|
58
66
|
```
|
|
59
67
|
|
|
60
|
-
|
|
68
|
+
Thinking levels: `off`, `minimal`, `low` (default for `on`), `medium`, `high`, `xhigh`.
|
|
61
69
|
|
|
62
70
|
## Start Gateway
|
|
63
71
|
|
package/package.json
CHANGED