@fses/workbench-app 0.1.3 → 0.2.0
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/{Workspace-CvJghuPy.js → Workspace-DMye5DU8.js} +11458 -11325
- package/dist/canvas/api/index.d.ts +7 -0
- package/dist/canvas/api/index.js +4 -0
- package/dist/canvasFacade-B0oy__da.js +1932 -0
- package/dist/cardFactory-CoDF-zsR.js +1392 -0
- package/dist/extensions/index.d.ts +2 -0
- package/dist/extensions/index.js +8 -0
- package/dist/fses-workbench-app.js +89 -86
- package/dist/index-DbH6tMQy.js +837 -0
- package/dist/internal/personal-workbench/lib/workbenchChatReplyBridge.d.ts +24 -0
- package/dist/runtime/index.js +1 -1
- package/dist/style.css +1 -1
- package/dist/{useWorkbenchRuntime-Pekhufen.js → useWorkbenchRuntime-XpOzwm56.js} +8752 -11980
- package/dist/workbenchCustomComponentRegistry-6GHzavdM.js +267 -0
- package/package.json +6 -2
- package/dist/index-DXag5A9X.js +0 -1096
|
@@ -23,6 +23,30 @@ export declare function queryResultDisplayFieldLabels(queryResult: Record<string
|
|
|
23
23
|
* @returns 可清理的表格消息 ID 列表。
|
|
24
24
|
*/
|
|
25
25
|
export declare function workbenchSuppressedQueryResultTableMessageIds(turn: ConversationTurn): string[];
|
|
26
|
+
/**
|
|
27
|
+
* 判断工具名是否属于 action-invocation 业务动作链路。
|
|
28
|
+
* @param toolName - DeepAgent 工具名。
|
|
29
|
+
* @returns 召回、组装或执行业务动作时返回 true。
|
|
30
|
+
*/
|
|
31
|
+
export declare function isBusinessActionInvocationToolName(toolName: string | undefined): boolean;
|
|
32
|
+
/**
|
|
33
|
+
* 判断工具名是否会抑制灰度自动推荐卡片。
|
|
34
|
+
* @param toolName - DeepAgent 工具名。
|
|
35
|
+
* @returns 业务动作、知识库、澄清或普通问答工具返回 true。
|
|
36
|
+
*/
|
|
37
|
+
export declare function isAutoCardRecommendationSuppressingToolName(toolName: string | undefined): boolean;
|
|
38
|
+
/**
|
|
39
|
+
* 判断当前 turn 是否已经进入业务行动流程。
|
|
40
|
+
* @param turn - 工作台对话轮次。
|
|
41
|
+
* @returns 业务行动流程返回 true。
|
|
42
|
+
*/
|
|
43
|
+
export declare function turnHasBusinessActionSignals(turn: ConversationTurn): boolean;
|
|
44
|
+
/**
|
|
45
|
+
* 判断当前回合是否不应自动弹出推荐卡片。
|
|
46
|
+
* @param turn - 工作台对话轮次。
|
|
47
|
+
* @returns 业务动作、知识库、澄清、普通问答等非问数主路径返回 true。
|
|
48
|
+
*/
|
|
49
|
+
export declare function turnHasAutoCardRecommendationSuppressingSignals(turn: ConversationTurn): boolean;
|
|
26
50
|
/**
|
|
27
51
|
* 获取流式结论消息的 ID。
|
|
28
52
|
* @param turn - 工作台对话轮次。
|
package/dist/runtime/index.js
CHANGED