liangzimixin 0.3.96 → 0.3.97
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
|
@@ -31841,7 +31841,11 @@ var InboundPipeline = class {
|
|
|
31841
31841
|
ctx,
|
|
31842
31842
|
cfg: sdkConfig,
|
|
31843
31843
|
dispatcher,
|
|
31844
|
-
replyOptions
|
|
31844
|
+
replyOptions: {
|
|
31845
|
+
...replyOptions,
|
|
31846
|
+
disableBlockStreaming: false
|
|
31847
|
+
// 启用块级流式: AI 每生成一个 block 就调一次 deliver
|
|
31848
|
+
}
|
|
31845
31849
|
});
|
|
31846
31850
|
if (typeof dispatcher.waitForIdle === "function") {
|
|
31847
31851
|
await dispatcher.waitForIdle();
|
package/dist/package.json
CHANGED
package/dist/setup-entry.cjs
CHANGED
|
@@ -34304,7 +34304,11 @@ var InboundPipeline = class {
|
|
|
34304
34304
|
ctx,
|
|
34305
34305
|
cfg: sdkConfig,
|
|
34306
34306
|
dispatcher,
|
|
34307
|
-
replyOptions
|
|
34307
|
+
replyOptions: {
|
|
34308
|
+
...replyOptions,
|
|
34309
|
+
disableBlockStreaming: false
|
|
34310
|
+
// 启用块级流式: AI 每生成一个 block 就调一次 deliver
|
|
34311
|
+
}
|
|
34308
34312
|
});
|
|
34309
34313
|
if (typeof dispatcher.waitForIdle === "function") {
|
|
34310
34314
|
await dispatcher.waitForIdle();
|
package/package.json
CHANGED
|
@@ -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.
|
|
21
|
+
set "SCRIPT_VERSION=0.3.97"
|
|
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.
|
|
17
|
+
SCRIPT_VERSION="0.3.97"
|
|
18
18
|
NPM_PACKAGE="liangzimixin"
|
|
19
19
|
|
|
20
20
|
# ── 颜色 ──────────────────────────────────────────────────────
|