@rivus/agent 0.10.2 → 0.10.3
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 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2879,7 +2879,7 @@ function resolveRunPresentation(input) {
|
|
|
2879
2879
|
title: input.generation ? "正在处理(续)" : "正在处理"
|
|
2880
2880
|
};
|
|
2881
2881
|
case "handoff": return {
|
|
2882
|
-
content:
|
|
2882
|
+
content: "任务仍在后台处理,进度将继续显示在下一条消息。",
|
|
2883
2883
|
note: "本卡片已停止更新;后续进度见下一条消息",
|
|
2884
2884
|
template: "blue",
|
|
2885
2885
|
title: "已转到新消息"
|
|
@@ -3048,10 +3048,6 @@ function updateWholeCard(baseUrl, agentName, request, status, call) {
|
|
|
3048
3048
|
..."reason" in request && request.reason ? { reason: request.reason } : {},
|
|
3049
3049
|
status,
|
|
3050
3050
|
...requestText === void 0 ? {} : { text: requestText }
|
|
3051
|
-
}) : status === "handoff" ? createFeishuAgentRunCard({
|
|
3052
|
-
agentName,
|
|
3053
|
-
status,
|
|
3054
|
-
...requestText === void 0 ? {} : { text: requestText }
|
|
3055
3051
|
}) : createFeishuAgentRunCard({
|
|
3056
3052
|
agentName,
|
|
3057
3053
|
status
|