@lobehub/cli 0.0.27 → 0.0.28
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.js +1 -1
- package/man/man1/lh.1 +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -212152,7 +212152,7 @@ var SerialServerIngester = class {
|
|
|
212152
212152
|
}
|
|
212153
212153
|
push(event) {
|
|
212154
212154
|
if (this.fatalError) return;
|
|
212155
|
-
if (event.type === "stream_chunk" && event.data?.chunkType === "text" && typeof event.data?.content === "string") {
|
|
212155
|
+
if (event.type === "stream_chunk" && event.data?.chunkType === "text" && typeof event.data?.content === "string" && !event.data?.subagent) {
|
|
212156
212156
|
this.accumulatedText += event.data.content;
|
|
212157
212157
|
this.pendingTextEvent = event;
|
|
212158
212158
|
if (this.timer) clearTimeout(this.timer);
|
package/man/man1/lh.1
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" Code generated by `npm run man:generate`; DO NOT EDIT.
|
|
2
2
|
.\" Manual command details come from the Commander command tree.
|
|
3
|
-
.TH LH 1 "" "@lobehub/cli 0.0.
|
|
3
|
+
.TH LH 1 "" "@lobehub/cli 0.0.28" "User Commands"
|
|
4
4
|
.SH NAME
|
|
5
5
|
lh \- LobeHub CLI \- manage and connect to LobeHub services
|
|
6
6
|
.SH SYNOPSIS
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"lh": "./dist/index.js",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"tsdown": "^0.21.4",
|
|
32
32
|
"typescript": "^6.0.3",
|
|
33
33
|
"ws": "^8.18.1",
|
|
34
|
+
"@lobechat/device-identity": "1.0.0",
|
|
34
35
|
"@lobechat/agent-gateway-client": "1.0.0",
|
|
35
36
|
"@lobechat/heterogeneous-agents": "1.0.0",
|
|
36
37
|
"@lobechat/tool-runtime": "1.0.0",
|
|
37
38
|
"@lobechat/local-file-shell": "1.0.0",
|
|
38
|
-
"@lobechat/device-gateway-client": "1.0.0"
|
|
39
|
-
"@lobechat/device-identity": "1.0.0"
|
|
39
|
+
"@lobechat/device-gateway-client": "1.0.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public",
|