@ynhcj/xiaoyi-channel 0.0.118-beta → 0.0.120-beta
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.
|
@@ -269,7 +269,7 @@ export function createXYReplyDispatcher(params) {
|
|
|
269
269
|
const toolName = name || "unknown";
|
|
270
270
|
// call_device_tool 由自身 execute() 内部发送具体子工具名的状态更新
|
|
271
271
|
// get_xxx_tool_schema 是给 LLM 查 schema 用的,无需向用户展示
|
|
272
|
-
if (toolName === "call_device_tool" || toolName.endsWith("_tool_schema")) {
|
|
272
|
+
if (toolName === "call_device_tool" || toolName.endsWith("_tool_schema") || toolName === "huawei_id_tool") {
|
|
273
273
|
log(`[TOOL START] Skipping generic status for ${toolName}`);
|
|
274
274
|
return;
|
|
275
275
|
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"uid": { "type": "string", "description": "User ID for file upload" },
|
|
21
21
|
"agentId": { "type": "string", "description": "Agent ID for this bot instance" },
|
|
22
22
|
"apiId": { "type": "string", "description": "API ID for push messages" },
|
|
23
|
-
"pushId": { "type": "string", "description": "Push ID for push messages" },
|
|
24
23
|
"fileUploadUrl": { "type": "string", "description": "Base URL for file upload service" },
|
|
25
24
|
"pushUrl": { "type": "string", "description": "URL for push message service" }
|
|
26
25
|
},
|