liangzimixin 0.3.98 → 0.3.100

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/dist/index.cjs CHANGED
@@ -32167,11 +32167,21 @@ var quantumImPlugin = {
32167
32167
  blockStreaming: true
32168
32168
  // 启用块级流式输出,AI 边生成边发送
32169
32169
  },
32170
+ /** 强制调整块级流式的截断阈值,让切块更频繁 */
32171
+ streaming: {
32172
+ blockStreamingCoalesceDefaults: {
32173
+ minChars: 50,
32174
+ // 缓冲只要满 50 字且遇到断句,就会立刻发出一块消息
32175
+ idleMs: 800
32176
+ // 思考停顿超过 0.8秒 立刻发出当前累积的段落
32177
+ }
32178
+ },
32170
32179
  agentPrompt: {
32171
32180
  messageToolHints: () => [
32172
32181
  "- \u91CF\u5B50\u5BC6\u4FE1 targeting: omit `target` to reply to the current conversation.",
32173
32182
  "- \u91CF\u5B50\u5BC6\u4FE1 supports text and file/image messages. No interactive cards.",
32174
- "- All messages are quantum-encrypted end-to-end."
32183
+ "- All messages are quantum-encrypted end-to-end.",
32184
+ "- IMPORTANT: Always split your responses into multiple short paragraphs. Avoid long walls of text. Use Double Newlines (\\n\\n) to separate different points so the system can chunk them."
32175
32185
  ]
32176
32186
  },
32177
32187
  /**
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liangzimixin",
3
- "version": "0.3.98",
3
+ "version": "0.3.100",
4
4
  "description": "Quantum-encrypted IM channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "index.cjs",
@@ -34562,11 +34562,21 @@ var quantumImPlugin = {
34562
34562
  blockStreaming: true
34563
34563
  // 启用块级流式输出,AI 边生成边发送
34564
34564
  },
34565
+ /** 强制调整块级流式的截断阈值,让切块更频繁 */
34566
+ streaming: {
34567
+ blockStreamingCoalesceDefaults: {
34568
+ minChars: 50,
34569
+ // 缓冲只要满 50 字且遇到断句,就会立刻发出一块消息
34570
+ idleMs: 800
34571
+ // 思考停顿超过 0.8秒 立刻发出当前累积的段落
34572
+ }
34573
+ },
34565
34574
  agentPrompt: {
34566
34575
  messageToolHints: () => [
34567
34576
  "- \u91CF\u5B50\u5BC6\u4FE1 targeting: omit `target` to reply to the current conversation.",
34568
34577
  "- \u91CF\u5B50\u5BC6\u4FE1 supports text and file/image messages. No interactive cards.",
34569
- "- All messages are quantum-encrypted end-to-end."
34578
+ "- All messages are quantum-encrypted end-to-end.",
34579
+ "- IMPORTANT: Always split your responses into multiple short paragraphs. Avoid long walls of text. Use Double Newlines (\\n\\n) to separate different points so the system can chunk them."
34570
34580
  ]
34571
34581
  },
34572
34582
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liangzimixin",
3
- "version": "0.3.98",
3
+ "version": "0.3.100",
4
4
  "description": "Quantum-encrypted IM channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -18,7 +18,7 @@ REM liangzimixin install script (Windows)
18
18
  REM Usage: liangzimixin_install.bat <appId> <appSecret> [quantumAccount]
19
19
  REM ============================================================
20
20
 
21
- set "SCRIPT_VERSION=0.3.98"
21
+ set "SCRIPT_VERSION=0.3.100"
22
22
  set "NPM_PACKAGE=liangzimixin"
23
23
 
24
24
  set "SKIP_SELF_UPDATE=0"
@@ -14,7 +14,7 @@ echo -e "\033[0;36m▸\033[0m Deployment log will be saved to $LOG_FILE"
14
14
  # 用法: ./liangzimixin_install.sh <appId> <appSecret> [quantumAccount]
15
15
  # ============================================================
16
16
 
17
- SCRIPT_VERSION="0.3.98"
17
+ SCRIPT_VERSION="0.3.100"
18
18
  NPM_PACKAGE="liangzimixin"
19
19
 
20
20
  # ── 颜色 ──────────────────────────────────────────────────────