@clikvn/agent-widget-embedded 1.0.33-dev → 1.0.35-dev
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/.claude/settings.local.json +12 -0
- package/.idea/clik-ai-chatbot-embedded.iml +12 -0
- package/.idea/codeStyles/Project.xml +59 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/jsLinters/eslint.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +6 -0
- package/.idea/vcs.xml +6 -0
- package/CLAUDE.md +20 -1
- package/dist/components/Chat/Message.d.ts.map +1 -1
- package/dist/components/Chat/ProductDetail.d.ts +24 -0
- package/dist/components/Chat/ProductDetail.d.ts.map +1 -1
- package/dist/components/Chat/ProductList.d.ts +2 -0
- package/dist/components/Chat/ProductList.d.ts.map +1 -1
- package/dist/components/Chat/ui/Button.d.ts +1 -1
- package/dist/constants/toolNames.d.ts +75 -0
- package/dist/constants/toolNames.d.ts.map +1 -0
- package/dist/index.html +39 -43
- package/dist/services/vt360.service.d.ts +5 -0
- package/dist/services/vt360.service.d.ts.map +1 -0
- package/dist/utils/messageUtils.d.ts +37 -0
- package/dist/utils/messageUtils.d.ts.map +1 -0
- package/dist/utils/toolUtils.d.ts +111 -0
- package/dist/utils/toolUtils.d.ts.map +1 -0
- package/dist/web.js +1 -1
- package/docs/brand-ui-command-actions-tools.md +29 -2
- package/docs/ui/product_detail_preview.png +0 -0
- package/docs/ui/products_list.png +0 -0
- package/package.json +1 -1
- package/public/index.html +11 -11
- package/tailwind.config.cjs +5 -5
- package/dist/index-old.html +0 -108
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { ToolUsage } from '../types/flowise.type';
|
|
2
|
+
/**
|
|
3
|
+
* Parse tool output data from JSON string
|
|
4
|
+
* @param outputData - The tool output data to parse
|
|
5
|
+
* @returns Parsed JSON object or null if parsing fails
|
|
6
|
+
*/
|
|
7
|
+
export declare const parseToolOutput: (outputData: any) => any;
|
|
8
|
+
/**
|
|
9
|
+
* Check if a tool name matches a specific prefix
|
|
10
|
+
* @param toolName - Tool name to check
|
|
11
|
+
* @param prefix - Prefix to match against
|
|
12
|
+
* @returns True if the tool name starts with the prefix
|
|
13
|
+
*/
|
|
14
|
+
export declare const hasToolPrefix: (toolName: string, prefix: string) => boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Check if a tool is a product list tool by prefix
|
|
17
|
+
* @param toolName - Tool name to check
|
|
18
|
+
* @returns True if the tool is a product list tool
|
|
19
|
+
*/
|
|
20
|
+
export declare const isProductListTool: (toolName: string) => boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a tool is a product detail tool by prefix
|
|
23
|
+
* @param toolName - Tool name to check
|
|
24
|
+
* @returns True if the tool is a product detail tool
|
|
25
|
+
*/
|
|
26
|
+
export declare const isProductDetailToolByPrefix: (toolName: string) => boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Check if a tool is a products list tool
|
|
29
|
+
* @param tool - Tool name to check
|
|
30
|
+
* @returns True if the tool is a products list tool
|
|
31
|
+
*/
|
|
32
|
+
export declare const isProductsTool: (tool: string) => boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Check if a tool is a product detail tool
|
|
35
|
+
* @param tool - Tool name to check
|
|
36
|
+
* @returns True if the tool is a product detail tool
|
|
37
|
+
*/
|
|
38
|
+
export declare const isProductDetailTool: (tool: string) => boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Check if a tool is a scenarios tool
|
|
41
|
+
* @param tool - Tool name to check
|
|
42
|
+
* @returns True if the tool is a scenarios tool
|
|
43
|
+
*/
|
|
44
|
+
export declare const isScenariosTool: (tool: string) => boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Check if a tool is a command tool
|
|
47
|
+
* @param tool - Tool name to check
|
|
48
|
+
* @returns True if the tool is a command tool
|
|
49
|
+
*/
|
|
50
|
+
export declare const isCommandTool: (tool: string) => boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Check if a tool is a product command tool
|
|
53
|
+
* @param tool - Tool name to check
|
|
54
|
+
* @returns True if the tool is a product command tool
|
|
55
|
+
*/
|
|
56
|
+
export declare const isProductCommandTool: (tool: string) => boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Check if a tool is a weather tool
|
|
59
|
+
* @param tool - Tool name to check
|
|
60
|
+
* @returns True if the tool is a weather tool
|
|
61
|
+
*/
|
|
62
|
+
export declare const isWeatherTool: (tool: string) => boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Check if a tool is a location tool
|
|
65
|
+
* @param tool - Tool name to check
|
|
66
|
+
* @returns True if the tool is a location tool
|
|
67
|
+
*/
|
|
68
|
+
export declare const isLocationTool: (tool: string) => boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Check if a tool usage contains HTML content
|
|
71
|
+
* @param toolUsage - The tool usage object to check
|
|
72
|
+
* @returns True if the tool contains HTML content
|
|
73
|
+
*/
|
|
74
|
+
export declare const isHtmlContent: (toolUsage: ToolUsage) => boolean;
|
|
75
|
+
/**
|
|
76
|
+
* Check if a tool should be treated as a custom tool result
|
|
77
|
+
* @param tool - Tool name to check
|
|
78
|
+
* @returns True if the tool is a custom tool
|
|
79
|
+
*/
|
|
80
|
+
export declare const isCustomTool: (tool: string) => boolean;
|
|
81
|
+
/**
|
|
82
|
+
* Check if a tool should focus the tool output (hide message content)
|
|
83
|
+
* @param tool - Tool name to check
|
|
84
|
+
* @returns True if the tool should focus output
|
|
85
|
+
*/
|
|
86
|
+
export declare const shouldFocusToolOutput: (tool: string) => boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Categorize tools from a list of tool usages
|
|
89
|
+
* @param usedTools - Array of tool usages
|
|
90
|
+
* @param isNewMessage - Whether this is a new message
|
|
91
|
+
* @returns Categorized tools object
|
|
92
|
+
*/
|
|
93
|
+
export declare const categorizeTools: (usedTools: ToolUsage[], isNewMessage?: boolean) => {
|
|
94
|
+
customToolResults: ToolUsage[];
|
|
95
|
+
toolResults: ToolUsage[];
|
|
96
|
+
cmdToolResult: null;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* Check if any tool in the list should focus output
|
|
100
|
+
* @param usedTools - Array of tool usages
|
|
101
|
+
* @returns True if any tool should focus output
|
|
102
|
+
*/
|
|
103
|
+
export declare const hasFocusToolOutput: (usedTools: ToolUsage[]) => boolean;
|
|
104
|
+
/**
|
|
105
|
+
* Remove tool output from message content
|
|
106
|
+
* @param content - Original message content (can be undefined)
|
|
107
|
+
* @param usedTools - Array of tool usages
|
|
108
|
+
* @returns Content with tool outputs removed, or empty string if content is undefined
|
|
109
|
+
*/
|
|
110
|
+
export declare const removeToolOutputFromContent: (content: string | undefined, usedTools: ToolUsage[]) => string;
|
|
111
|
+
//# sourceMappingURL=toolUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolUtils.d.ts","sourceRoot":"","sources":["../../src/utils/toolUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAWlD;;;;GAIG;AACH,eAAO,MAAM,eAAe,eAAgB,GAAG,QAM9C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,aAAa,aAAc,MAAM,UAAU,MAAM,KAAG,OAEhE,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,aAAc,MAAM,KAAG,OAMpD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,2BAA2B,aAAc,MAAM,KAAG,OAM9D,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,SAAU,MAAM,KAAG,OAE7C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,SAAU,MAAM,KAAG,OAElD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,eAAe,SAAU,MAAM,KAAG,OAE9C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,aAAa,SAAU,MAAM,KAAG,OAE5C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,SAAU,MAAM,KAAG,OAEnD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,aAAa,SAAU,MAAM,KAAG,OAE5C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,cAAc,SAAU,MAAM,KAAG,OAK7C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,aAAa,cAAe,SAAS,KAAG,OAGpD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,YAAY,SAAU,MAAM,KAAG,OAQ3C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,SAAU,MAAM,KAAG,OAOpD,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,eAAe,cACf,SAAS,EAAE,iBACR,OAAO;;;;CAuBtB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,cAAe,SAAS,EAAE,KAAG,OAK3D,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,2BAA2B,YAC7B,MAAM,GAAG,SAAS,aAChB,SAAS,EAAE,KACrB,MAaF,CAAC"}
|