@friendlyrobot/discord-pi-agent 0.3.11 → 0.3.12
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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,7 @@ Reusable Discord DM bridge for persistent pi agent sessions.
|
|
|
15
15
|
|
|
16
16
|
- `!help`
|
|
17
17
|
- `!status`
|
|
18
|
+
- `!thinking`
|
|
18
19
|
- `!compact`
|
|
19
20
|
- `!reset-session`
|
|
20
21
|
|
|
@@ -74,6 +75,7 @@ await startDiscordPiBridge(config);
|
|
|
74
75
|
- `agentDir` default: `<cwd>/.pi-agent`
|
|
75
76
|
- `modelProvider` default: `moonshot-cn`
|
|
76
77
|
- `modelId` default: `kimi-k2.5`
|
|
78
|
+
- `thinkingLevel` default: `medium` (values: `off`, `minimal`, `low`, `medium`, `high`, `xhigh`)
|
|
77
79
|
- `promptTransform` default: identity
|
|
78
80
|
- `startupMessage` default: `Bot is online and ready.`
|
|
79
81
|
- `shutdownOnSignals` default: `true`
|
|
@@ -94,6 +96,12 @@ If `PI_AGENT_CWD` is missing it falls back to `process.cwd()`.
|
|
|
94
96
|
|
|
95
97
|
Set `DISCORD_STARTUP_MESSAGE=false` to disable the startup DM.
|
|
96
98
|
|
|
99
|
+
## Thinking Levels
|
|
100
|
+
|
|
101
|
+
Use `!thinking` to view the current thinking/reasoning level and available options. Use `!thinking <level>` to set it (e.g., `!thinking high`).
|
|
102
|
+
|
|
103
|
+
Not all models support thinking/reasoning. The configured `thinkingLevel` is applied automatically when the model supports it.
|
|
104
|
+
|
|
97
105
|
## Build
|
|
98
106
|
|
|
99
107
|
```bash
|