@rpascene/core 0.30.8
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/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/es/agent/agent.mjs +636 -0
- package/dist/es/agent/agent.mjs.map +1 -0
- package/dist/es/agent/common.mjs +0 -0
- package/dist/es/agent/index.mjs +6 -0
- package/dist/es/agent/task-cache.mjs +184 -0
- package/dist/es/agent/task-cache.mjs.map +1 -0
- package/dist/es/agent/tasks.mjs +666 -0
- package/dist/es/agent/tasks.mjs.map +1 -0
- package/dist/es/agent/ui-utils.mjs +72 -0
- package/dist/es/agent/ui-utils.mjs.map +1 -0
- package/dist/es/agent/utils.mjs +162 -0
- package/dist/es/agent/utils.mjs.map +1 -0
- package/dist/es/ai-model/action-executor.mjs +129 -0
- package/dist/es/ai-model/action-executor.mjs.map +1 -0
- package/dist/es/ai-model/common.mjs +355 -0
- package/dist/es/ai-model/common.mjs.map +1 -0
- package/dist/es/ai-model/conversation-history.mjs +58 -0
- package/dist/es/ai-model/conversation-history.mjs.map +1 -0
- package/dist/es/ai-model/index.mjs +11 -0
- package/dist/es/ai-model/inspect.mjs +286 -0
- package/dist/es/ai-model/inspect.mjs.map +1 -0
- package/dist/es/ai-model/llm-planning.mjs +140 -0
- package/dist/es/ai-model/llm-planning.mjs.map +1 -0
- package/dist/es/ai-model/prompt/assertion.mjs +31 -0
- package/dist/es/ai-model/prompt/assertion.mjs.map +1 -0
- package/dist/es/ai-model/prompt/common.mjs +7 -0
- package/dist/es/ai-model/prompt/common.mjs.map +1 -0
- package/dist/es/ai-model/prompt/describe.mjs +44 -0
- package/dist/es/ai-model/prompt/describe.mjs.map +1 -0
- package/dist/es/ai-model/prompt/extraction.mjs +140 -0
- package/dist/es/ai-model/prompt/extraction.mjs.map +1 -0
- package/dist/es/ai-model/prompt/llm-locator.mjs +275 -0
- package/dist/es/ai-model/prompt/llm-locator.mjs.map +1 -0
- package/dist/es/ai-model/prompt/llm-planning.mjs +367 -0
- package/dist/es/ai-model/prompt/llm-planning.mjs.map +1 -0
- package/dist/es/ai-model/prompt/llm-section-locator.mjs +47 -0
- package/dist/es/ai-model/prompt/llm-section-locator.mjs.map +1 -0
- package/dist/es/ai-model/prompt/playwright-generator.mjs +117 -0
- package/dist/es/ai-model/prompt/playwright-generator.mjs.map +1 -0
- package/dist/es/ai-model/prompt/ui-tars-locator.mjs +34 -0
- package/dist/es/ai-model/prompt/ui-tars-locator.mjs.map +1 -0
- package/dist/es/ai-model/prompt/ui-tars-planning.mjs +36 -0
- package/dist/es/ai-model/prompt/ui-tars-planning.mjs.map +1 -0
- package/dist/es/ai-model/prompt/util.mjs +124 -0
- package/dist/es/ai-model/prompt/util.mjs.map +1 -0
- package/dist/es/ai-model/prompt/yaml-generator.mjs +219 -0
- package/dist/es/ai-model/prompt/yaml-generator.mjs.map +1 -0
- package/dist/es/ai-model/service-caller/index.mjs +537 -0
- package/dist/es/ai-model/service-caller/index.mjs.map +1 -0
- package/dist/es/ai-model/ui-tars-planning.mjs +201 -0
- package/dist/es/ai-model/ui-tars-planning.mjs.map +1 -0
- package/dist/es/device/index.mjs +152 -0
- package/dist/es/device/index.mjs.map +1 -0
- package/dist/es/image/index.mjs +2 -0
- package/dist/es/index.mjs +11 -0
- package/dist/es/index.mjs.map +1 -0
- package/dist/es/insight/index.mjs +233 -0
- package/dist/es/insight/index.mjs.map +1 -0
- package/dist/es/insight/utils.mjs +15 -0
- package/dist/es/insight/utils.mjs.map +1 -0
- package/dist/es/report.mjs +88 -0
- package/dist/es/report.mjs.map +1 -0
- package/dist/es/tree.mjs +2 -0
- package/dist/es/types.mjs +11 -0
- package/dist/es/types.mjs.map +1 -0
- package/dist/es/utils.mjs +204 -0
- package/dist/es/utils.mjs.map +1 -0
- package/dist/es/yaml/builder.mjs +13 -0
- package/dist/es/yaml/builder.mjs.map +1 -0
- package/dist/es/yaml/index.mjs +3 -0
- package/dist/es/yaml/player.mjs +372 -0
- package/dist/es/yaml/player.mjs.map +1 -0
- package/dist/es/yaml/utils.mjs +73 -0
- package/dist/es/yaml/utils.mjs.map +1 -0
- package/dist/es/yaml.mjs +0 -0
- package/dist/lib/agent/agent.js +683 -0
- package/dist/lib/agent/agent.js.map +1 -0
- package/dist/lib/agent/common.js +5 -0
- package/dist/lib/agent/index.js +81 -0
- package/dist/lib/agent/index.js.map +1 -0
- package/dist/lib/agent/task-cache.js +236 -0
- package/dist/lib/agent/task-cache.js.map +1 -0
- package/dist/lib/agent/tasks.js +703 -0
- package/dist/lib/agent/tasks.js.map +1 -0
- package/dist/lib/agent/ui-utils.js +121 -0
- package/dist/lib/agent/ui-utils.js.map +1 -0
- package/dist/lib/agent/utils.js +233 -0
- package/dist/lib/agent/utils.js.map +1 -0
- package/dist/lib/ai-model/action-executor.js +163 -0
- package/dist/lib/ai-model/action-executor.js.map +1 -0
- package/dist/lib/ai-model/common.js +461 -0
- package/dist/lib/ai-model/common.js.map +1 -0
- package/dist/lib/ai-model/conversation-history.js +92 -0
- package/dist/lib/ai-model/conversation-history.js.map +1 -0
- package/dist/lib/ai-model/index.js +131 -0
- package/dist/lib/ai-model/index.js.map +1 -0
- package/dist/lib/ai-model/inspect.js +326 -0
- package/dist/lib/ai-model/inspect.js.map +1 -0
- package/dist/lib/ai-model/llm-planning.js +174 -0
- package/dist/lib/ai-model/llm-planning.js.map +1 -0
- package/dist/lib/ai-model/prompt/assertion.js +65 -0
- package/dist/lib/ai-model/prompt/assertion.js.map +1 -0
- package/dist/lib/ai-model/prompt/common.js +41 -0
- package/dist/lib/ai-model/prompt/common.js.map +1 -0
- package/dist/lib/ai-model/prompt/describe.js +78 -0
- package/dist/lib/ai-model/prompt/describe.js.map +1 -0
- package/dist/lib/ai-model/prompt/extraction.js +180 -0
- package/dist/lib/ai-model/prompt/extraction.js.map +1 -0
- package/dist/lib/ai-model/prompt/llm-locator.js +315 -0
- package/dist/lib/ai-model/prompt/llm-locator.js.map +1 -0
- package/dist/lib/ai-model/prompt/llm-planning.js +407 -0
- package/dist/lib/ai-model/prompt/llm-planning.js.map +1 -0
- package/dist/lib/ai-model/prompt/llm-section-locator.js +84 -0
- package/dist/lib/ai-model/prompt/llm-section-locator.js.map +1 -0
- package/dist/lib/ai-model/prompt/playwright-generator.js +178 -0
- package/dist/lib/ai-model/prompt/playwright-generator.js.map +1 -0
- package/dist/lib/ai-model/prompt/ui-tars-locator.js +68 -0
- package/dist/lib/ai-model/prompt/ui-tars-locator.js.map +1 -0
- package/dist/lib/ai-model/prompt/ui-tars-planning.js +73 -0
- package/dist/lib/ai-model/prompt/ui-tars-planning.js.map +1 -0
- package/dist/lib/ai-model/prompt/util.js +176 -0
- package/dist/lib/ai-model/prompt/util.js.map +1 -0
- package/dist/lib/ai-model/prompt/yaml-generator.js +280 -0
- package/dist/lib/ai-model/prompt/yaml-generator.js.map +1 -0
- package/dist/lib/ai-model/service-caller/index.js +623 -0
- package/dist/lib/ai-model/service-caller/index.js.map +1 -0
- package/dist/lib/ai-model/ui-tars-planning.js +238 -0
- package/dist/lib/ai-model/ui-tars-planning.js.map +1 -0
- package/dist/lib/device/index.js +255 -0
- package/dist/lib/device/index.js.map +1 -0
- package/dist/lib/image/index.js +56 -0
- package/dist/lib/image/index.js.map +1 -0
- package/dist/lib/index.js +103 -0
- package/dist/lib/index.js.map +1 -0
- package/dist/lib/insight/index.js +267 -0
- package/dist/lib/insight/index.js.map +1 -0
- package/dist/lib/insight/utils.js +49 -0
- package/dist/lib/insight/utils.js.map +1 -0
- package/dist/lib/report.js +122 -0
- package/dist/lib/report.js.map +1 -0
- package/dist/lib/tree.js +44 -0
- package/dist/lib/tree.js.map +1 -0
- package/dist/lib/types.js +82 -0
- package/dist/lib/types.js.map +1 -0
- package/dist/lib/utils.js +283 -0
- package/dist/lib/utils.js.map +1 -0
- package/dist/lib/yaml/builder.js +57 -0
- package/dist/lib/yaml/builder.js.map +1 -0
- package/dist/lib/yaml/index.js +80 -0
- package/dist/lib/yaml/index.js.map +1 -0
- package/dist/lib/yaml/player.js +406 -0
- package/dist/lib/yaml/player.js.map +1 -0
- package/dist/lib/yaml/utils.js +126 -0
- package/dist/lib/yaml/utils.js.map +1 -0
- package/dist/lib/yaml.js +20 -0
- package/dist/lib/yaml.js.map +1 -0
- package/dist/types/agent/agent.d.ts +156 -0
- package/dist/types/agent/common.d.ts +0 -0
- package/dist/types/agent/index.d.ts +9 -0
- package/dist/types/agent/task-cache.d.ts +48 -0
- package/dist/types/agent/tasks.d.ts +48 -0
- package/dist/types/agent/ui-utils.d.ts +7 -0
- package/dist/types/agent/utils.d.ts +52 -0
- package/dist/types/ai-model/action-executor.d.ts +19 -0
- package/dist/types/ai-model/common.d.ts +569 -0
- package/dist/types/ai-model/conversation-history.d.ts +18 -0
- package/dist/types/ai-model/index.d.ts +13 -0
- package/dist/types/ai-model/inspect.d.ts +46 -0
- package/dist/types/ai-model/llm-planning.d.ts +11 -0
- package/dist/types/ai-model/prompt/assertion.d.ts +2 -0
- package/dist/types/ai-model/prompt/common.d.ts +2 -0
- package/dist/types/ai-model/prompt/describe.d.ts +1 -0
- package/dist/types/ai-model/prompt/extraction.d.ts +4 -0
- package/dist/types/ai-model/prompt/llm-locator.d.ts +9 -0
- package/dist/types/ai-model/prompt/llm-planning.d.ts +9 -0
- package/dist/types/ai-model/prompt/llm-section-locator.d.ts +6 -0
- package/dist/types/ai-model/prompt/playwright-generator.d.ts +26 -0
- package/dist/types/ai-model/prompt/ui-tars-locator.d.ts +1 -0
- package/dist/types/ai-model/prompt/ui-tars-planning.d.ts +2 -0
- package/dist/types/ai-model/prompt/util.d.ts +47 -0
- package/dist/types/ai-model/prompt/yaml-generator.d.ts +100 -0
- package/dist/types/ai-model/service-caller/index.d.ts +48 -0
- package/dist/types/ai-model/ui-tars-planning.d.ts +59 -0
- package/dist/types/device/index.d.ts +2158 -0
- package/dist/types/image/index.d.ts +1 -0
- package/dist/types/index.d.ts +12 -0
- package/dist/types/insight/index.d.ts +31 -0
- package/dist/types/insight/utils.d.ts +2 -0
- package/dist/types/report.d.ts +12 -0
- package/dist/types/tree.d.ts +1 -0
- package/dist/types/types.d.ts +414 -0
- package/dist/types/utils.d.ts +40 -0
- package/dist/types/yaml/builder.d.ts +2 -0
- package/dist/types/yaml/index.d.ts +3 -0
- package/dist/types/yaml/player.d.ts +34 -0
- package/dist/types/yaml/utils.d.ts +9 -0
- package/dist/types/yaml.d.ts +178 -0
- package/package.json +108 -0
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { PromptTemplate } from "@langchain/core/prompts";
|
|
2
|
+
function systemPromptToExtract() {
|
|
3
|
+
return `
|
|
4
|
+
You are a versatile professional in software UI design and testing. Your outstanding contributions will impact the user experience of billions of users.
|
|
5
|
+
|
|
6
|
+
The user will give you a screenshot, the contents of it (optional), and some data requirements in <DATA_DEMAND>. You need to understand the user's requirements and extract the data satisfying the <DATA_DEMAND>.
|
|
7
|
+
|
|
8
|
+
If a key specifies a JSON data type (such as Number, String, Boolean, Object, Array), ensure the returned value strictly matches that data type.
|
|
9
|
+
|
|
10
|
+
If the user provides multiple reference images, please carefully review the reference images with the screenshot and provide the correct answer for <DATA_DEMAND>.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
Return in the following JSON format:
|
|
14
|
+
{
|
|
15
|
+
thought: string, // the thinking process of the extraction, less then 300 words
|
|
16
|
+
data: any, // the extracted data. Make sure both the value and scheme meet the DATA_DEMAND. If you want to write some description in this field, use the same language as the DATA_DEMAND.
|
|
17
|
+
errors: [], // string[], error message if any
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
# Example 1
|
|
21
|
+
For example, if the DATA_DEMAND is:
|
|
22
|
+
|
|
23
|
+
<DATA_DEMAND>
|
|
24
|
+
{
|
|
25
|
+
"name": "name shows on the left panel, string",
|
|
26
|
+
"age": "age shows on the right panel, number",
|
|
27
|
+
"isAdmin": "if the user is admin, boolean"
|
|
28
|
+
}
|
|
29
|
+
</DATA_DEMAND>
|
|
30
|
+
|
|
31
|
+
By viewing the screenshot and page contents, you can extract the following data:
|
|
32
|
+
|
|
33
|
+
{
|
|
34
|
+
thought: "According to the screenshot, i can see ...",
|
|
35
|
+
data: {
|
|
36
|
+
name: "John",
|
|
37
|
+
age: 30,
|
|
38
|
+
isAdmin: true
|
|
39
|
+
},
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
# Example 2
|
|
43
|
+
If the DATA_DEMAND is:
|
|
44
|
+
|
|
45
|
+
<DATA_DEMAND>
|
|
46
|
+
the todo items list, string[]
|
|
47
|
+
</DATA_DEMAND>
|
|
48
|
+
|
|
49
|
+
By viewing the screenshot and page contents, you can extract the following data:
|
|
50
|
+
|
|
51
|
+
{
|
|
52
|
+
thought: "According to the screenshot, i can see ...",
|
|
53
|
+
data: ["todo 1", "todo 2", "todo 3"],
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
# Example 3
|
|
57
|
+
If the DATA_DEMAND is:
|
|
58
|
+
|
|
59
|
+
<DATA_DEMAND>
|
|
60
|
+
the page title, string
|
|
61
|
+
</DATA_DEMAND>
|
|
62
|
+
|
|
63
|
+
By viewing the screenshot and page contents, you can extract the following data:
|
|
64
|
+
|
|
65
|
+
{
|
|
66
|
+
thought: "According to the screenshot, i can see ...",
|
|
67
|
+
data: "todo list",
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
# Example 4
|
|
71
|
+
If the DATA_DEMAND is:
|
|
72
|
+
|
|
73
|
+
<DATA_DEMAND>
|
|
74
|
+
{
|
|
75
|
+
"result": "Boolean, is it currently the SMS page?"
|
|
76
|
+
}
|
|
77
|
+
</DATA_DEMAND>
|
|
78
|
+
|
|
79
|
+
By viewing the screenshot and page contents, you can extract the following data:
|
|
80
|
+
|
|
81
|
+
{
|
|
82
|
+
thought: "According to the screenshot, i can see ...",
|
|
83
|
+
data: { result: true },
|
|
84
|
+
}
|
|
85
|
+
`;
|
|
86
|
+
}
|
|
87
|
+
const extractDataQueryPrompt = async (pageDescription, dataQuery)=>{
|
|
88
|
+
let dataQueryText = '';
|
|
89
|
+
dataQueryText = 'string' == typeof dataQuery ? dataQuery : JSON.stringify(dataQuery, null, 2);
|
|
90
|
+
const extractDataPrompt = new PromptTemplate({
|
|
91
|
+
template: `
|
|
92
|
+
<PageDescription>
|
|
93
|
+
{pageDescription}
|
|
94
|
+
</PageDescription>
|
|
95
|
+
|
|
96
|
+
<DATA_DEMAND>
|
|
97
|
+
{dataQuery}
|
|
98
|
+
</DATA_DEMAND>
|
|
99
|
+
`,
|
|
100
|
+
inputVariables: [
|
|
101
|
+
"pageDescription",
|
|
102
|
+
'dataQuery'
|
|
103
|
+
]
|
|
104
|
+
});
|
|
105
|
+
return await extractDataPrompt.format({
|
|
106
|
+
pageDescription,
|
|
107
|
+
dataQuery: dataQueryText
|
|
108
|
+
});
|
|
109
|
+
};
|
|
110
|
+
const extractDataSchema = {
|
|
111
|
+
type: 'json_schema',
|
|
112
|
+
json_schema: {
|
|
113
|
+
name: 'extract_data',
|
|
114
|
+
strict: true,
|
|
115
|
+
schema: {
|
|
116
|
+
type: 'object',
|
|
117
|
+
properties: {
|
|
118
|
+
data: {
|
|
119
|
+
type: 'object',
|
|
120
|
+
description: 'The extracted data'
|
|
121
|
+
},
|
|
122
|
+
errors: {
|
|
123
|
+
type: 'array',
|
|
124
|
+
items: {
|
|
125
|
+
type: 'string'
|
|
126
|
+
},
|
|
127
|
+
description: 'Error messages, if any'
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
required: [
|
|
131
|
+
'data',
|
|
132
|
+
'errors'
|
|
133
|
+
],
|
|
134
|
+
additionalProperties: false
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
};
|
|
138
|
+
export { extractDataQueryPrompt, extractDataSchema, systemPromptToExtract };
|
|
139
|
+
|
|
140
|
+
//# sourceMappingURL=extraction.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ai-model\\prompt\\extraction.mjs","sources":["webpack://@rpascene/core/./src/ai-model/prompt/extraction.ts"],"sourcesContent":["import { PromptTemplate } from '@langchain/core/prompts';\nimport type { ResponseFormatJSONSchema } from 'openai/resources/index';\n\nexport function systemPromptToExtract() {\n return `\nYou are a versatile professional in software UI design and testing. Your outstanding contributions will impact the user experience of billions of users.\n\nThe user will give you a screenshot, the contents of it (optional), and some data requirements in <DATA_DEMAND>. You need to understand the user's requirements and extract the data satisfying the <DATA_DEMAND>.\n\nIf a key specifies a JSON data type (such as Number, String, Boolean, Object, Array), ensure the returned value strictly matches that data type.\n\nIf the user provides multiple reference images, please carefully review the reference images with the screenshot and provide the correct answer for <DATA_DEMAND>.\n\n\nReturn in the following JSON format:\n{\n thought: string, // the thinking process of the extraction, less then 300 words\n data: any, // the extracted data. Make sure both the value and scheme meet the DATA_DEMAND. If you want to write some description in this field, use the same language as the DATA_DEMAND.\n errors: [], // string[], error message if any\n}\n\n# Example 1\nFor example, if the DATA_DEMAND is:\n\n<DATA_DEMAND>\n{\n \"name\": \"name shows on the left panel, string\",\n \"age\": \"age shows on the right panel, number\",\n \"isAdmin\": \"if the user is admin, boolean\"\n}\n</DATA_DEMAND>\n\nBy viewing the screenshot and page contents, you can extract the following data:\n\n{\n thought: \"According to the screenshot, i can see ...\",\n data: {\n name: \"John\",\n age: 30,\n isAdmin: true\n },\n}\n\n# Example 2\nIf the DATA_DEMAND is:\n\n<DATA_DEMAND>\nthe todo items list, string[]\n</DATA_DEMAND>\n\nBy viewing the screenshot and page contents, you can extract the following data:\n\n{\n thought: \"According to the screenshot, i can see ...\",\n data: [\"todo 1\", \"todo 2\", \"todo 3\"],\n}\n\n# Example 3\nIf the DATA_DEMAND is:\n\n<DATA_DEMAND>\nthe page title, string\n</DATA_DEMAND>\n\nBy viewing the screenshot and page contents, you can extract the following data:\n\n{\n thought: \"According to the screenshot, i can see ...\",\n data: \"todo list\",\n}\n\n# Example 4\nIf the DATA_DEMAND is:\n\n<DATA_DEMAND>\n{\n \"result\": \"Boolean, is it currently the SMS page?\"\n}\n</DATA_DEMAND>\n\nBy viewing the screenshot and page contents, you can extract the following data:\n\n{\n thought: \"According to the screenshot, i can see ...\",\n data: { result: true },\n}\n`;\n}\n\nexport const extractDataQueryPrompt = async (\n pageDescription: string,\n dataQuery: string | Record<string, string>,\n) => {\n let dataQueryText = '';\n if (typeof dataQuery === 'string') {\n dataQueryText = dataQuery;\n } else {\n dataQueryText = JSON.stringify(dataQuery, null, 2);\n }\n const extractDataPrompt = new PromptTemplate({\n template: `\n<PageDescription>\n{pageDescription}\n</PageDescription>\n\n<DATA_DEMAND>\n{dataQuery}\n</DATA_DEMAND>\n `,\n inputVariables: ['pageDescription', 'dataQuery'],\n });\n\n return await extractDataPrompt.format({\n pageDescription,\n dataQuery: dataQueryText,\n });\n};\n\nexport const extractDataSchema: ResponseFormatJSONSchema = {\n type: 'json_schema',\n json_schema: {\n name: 'extract_data',\n strict: true,\n schema: {\n type: 'object',\n properties: {\n data: {\n type: 'object',\n description: 'The extracted data',\n },\n errors: {\n type: 'array',\n items: {\n type: 'string',\n },\n description: 'Error messages, if any',\n },\n },\n required: ['data', 'errors'],\n additionalProperties: false,\n },\n },\n};\n"],"names":["systemPromptToExtract","extractDataQueryPrompt","pageDescription","dataQuery","dataQueryText","JSON","extractDataPrompt","PromptTemplate","extractDataSchema"],"mappings":";AAGO,SAASA;IACd,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkFV,CAAC;AACD;AAEO,MAAMC,yBAAyB,OACpCC,iBACAC;IAEA,IAAIC,gBAAgB;IAElBA,gBADE,AAAqB,YAArB,OAAOD,YACOA,YAEAE,KAAK,SAAS,CAACF,WAAW,MAAM;IAElD,MAAMG,oBAAoB,IAAIC,eAAe;QAC3C,UAAU,CAAC;;;;;;;;EAQb,CAAC;QACC,gBAAgB;YAAC;YAAmB;SAAY;IAClD;IAEA,OAAO,MAAMD,kBAAkB,MAAM,CAAC;QACpCJ;QACA,WAAWE;IACb;AACF;AAEO,MAAMI,oBAA8C;IACzD,MAAM;IACN,aAAa;QACX,MAAM;QACN,QAAQ;QACR,QAAQ;YACN,MAAM;YACN,YAAY;gBACV,MAAM;oBACJ,MAAM;oBACN,aAAa;gBACf;gBACA,QAAQ;oBACN,MAAM;oBACN,OAAO;wBACL,MAAM;oBACR;oBACA,aAAa;gBACf;YACF;YACA,UAAU;gBAAC;gBAAQ;aAAS;YAC5B,sBAAsB;QACxB;IACF;AACF"}
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
import { PromptTemplate } from "@langchain/core/prompts";
|
|
2
|
+
import { bboxDescription } from "./common.mjs";
|
|
3
|
+
function systemPromptToLocateElement(vlMode) {
|
|
4
|
+
if (vlMode) {
|
|
5
|
+
const bboxComment = bboxDescription(vlMode);
|
|
6
|
+
return `
|
|
7
|
+
## Role:
|
|
8
|
+
You are an expert in software testing.
|
|
9
|
+
|
|
10
|
+
## Objective:
|
|
11
|
+
- Identify elements in screenshots and text that match the user's description.
|
|
12
|
+
- Give the coordinates of the element that matches the user's description best in the screenshot.
|
|
13
|
+
- Determine whether the user's description is order-sensitive (e.g., contains phrases like 'the third item in the list', 'the last button', etc.).
|
|
14
|
+
|
|
15
|
+
## Output Format:
|
|
16
|
+
\`\`\`json
|
|
17
|
+
{
|
|
18
|
+
"bbox": [number, number, number, number], // ${bboxComment}
|
|
19
|
+
"errors"?: string[],
|
|
20
|
+
"isOrderSensitive": boolean // Whether the targetElementDescription is order-sensitive (true/false)
|
|
21
|
+
}
|
|
22
|
+
\`\`\`
|
|
23
|
+
|
|
24
|
+
Fields:
|
|
25
|
+
* \`bbox\` is the bounding box of the element that matches the user's description best in the screenshot
|
|
26
|
+
* \`isOrderSensitive\` is a boolean indicating whether the user's description is order-sensitive (true/false)
|
|
27
|
+
* \`errors\` is an optional array of error messages (if any)
|
|
28
|
+
|
|
29
|
+
Order-sensitive means the description contains phrases like:
|
|
30
|
+
- "the third item in the list"
|
|
31
|
+
- "the last button"
|
|
32
|
+
- "the first input box"
|
|
33
|
+
- "the second row"
|
|
34
|
+
|
|
35
|
+
Not order-sensitive means the description is like:
|
|
36
|
+
- "confirm button"
|
|
37
|
+
- "search box"
|
|
38
|
+
- "password input"
|
|
39
|
+
|
|
40
|
+
For example, when an element is found and the description is order-sensitive:
|
|
41
|
+
\`\`\`json
|
|
42
|
+
{
|
|
43
|
+
"bbox": [100, 100, 200, 200],
|
|
44
|
+
"isOrderSensitive": true,
|
|
45
|
+
"errors": []
|
|
46
|
+
}
|
|
47
|
+
\`\`\`
|
|
48
|
+
|
|
49
|
+
When no element is found and the description is not order-sensitive:
|
|
50
|
+
\`\`\`json
|
|
51
|
+
{
|
|
52
|
+
"bbox": [],
|
|
53
|
+
"isOrderSensitive": false,
|
|
54
|
+
"errors": ["I can see ..., but {some element} is not found"]
|
|
55
|
+
}
|
|
56
|
+
\`\`\`
|
|
57
|
+
`;
|
|
58
|
+
}
|
|
59
|
+
return `
|
|
60
|
+
## Role:
|
|
61
|
+
You are an expert in software page image (2D) and page element text analysis.
|
|
62
|
+
|
|
63
|
+
## Objective:
|
|
64
|
+
- Identify elements in screenshots and text that match the user's description.
|
|
65
|
+
- Return JSON data containing the selection reason and element ID.
|
|
66
|
+
- Determine whether the user's description is order-sensitive (e.g., contains phrases like 'the third item in the list', 'the last button', etc.).
|
|
67
|
+
|
|
68
|
+
## Skills:
|
|
69
|
+
- Image analysis and recognition
|
|
70
|
+
- Multilingual text understanding
|
|
71
|
+
- Software UI design and testing
|
|
72
|
+
|
|
73
|
+
## Workflow:
|
|
74
|
+
1. Receive the user's element description, screenshot, and element description information. Note that the text may contain non-English characters (e.g., Chinese), indicating that the application may be non-English.
|
|
75
|
+
2. Based on the user's description, locate the target element ID in the list of element descriptions and the screenshot.
|
|
76
|
+
3. Found the required number of elements
|
|
77
|
+
4. Return JSON data containing the selection reason and element ID.
|
|
78
|
+
5. Judge whether the user's description is order-sensitive (see below for definition and examples).
|
|
79
|
+
|
|
80
|
+
## Constraints:
|
|
81
|
+
- Strictly adhere to the specified location when describing the required element; do not select elements from other locations.
|
|
82
|
+
- Elements in the image with NodeType other than "TEXT Node" have been highlighted to identify the element among multiple non-text elements.
|
|
83
|
+
- Accurately identify element information based on the user's description and return the corresponding element ID from the element description information, not extracted from the image.
|
|
84
|
+
- If no elements are found, the "elements" array should be empty.
|
|
85
|
+
- The returned data must conform to the specified JSON format.
|
|
86
|
+
- The returned value id information must use the id from element info (important: **use id not indexId, id is hash content**)
|
|
87
|
+
|
|
88
|
+
## Order-Sensitive Definition:
|
|
89
|
+
- If the description contains phrases like "the third item in the list", "the last button", "the first input box", "the second row", etc., it is order-sensitive (isOrderSensitive = true).
|
|
90
|
+
- If the description is like "confirm button", "search box", "password input", etc., it is not order-sensitive (isOrderSensitive = false).
|
|
91
|
+
|
|
92
|
+
## Output Format:
|
|
93
|
+
|
|
94
|
+
Please return the result in JSON format as follows:
|
|
95
|
+
|
|
96
|
+
\`\`\`json
|
|
97
|
+
{
|
|
98
|
+
"elements": [
|
|
99
|
+
// If no matching elements are found, return an empty array []
|
|
100
|
+
{
|
|
101
|
+
"reason": "PLACEHOLDER", // The thought process for finding the element, replace PLACEHOLDER with your thought process
|
|
102
|
+
"text": "PLACEHOLDER", // Replace PLACEHOLDER with the text of elementInfo, if none, leave empty
|
|
103
|
+
"id": "PLACEHOLDER" // Replace PLACEHOLDER with the ID (important: **use id not indexId, id is hash content**) of elementInfo
|
|
104
|
+
}
|
|
105
|
+
// More elements...
|
|
106
|
+
],
|
|
107
|
+
"isOrderSensitive": true, // or false, depending on the user's description
|
|
108
|
+
"errors": [] // Array of strings containing any error messages
|
|
109
|
+
}
|
|
110
|
+
\`\`\`
|
|
111
|
+
|
|
112
|
+
## Example:
|
|
113
|
+
Example 1:
|
|
114
|
+
Input Example:
|
|
115
|
+
\`\`\`json
|
|
116
|
+
// Description: "Shopping cart icon in the upper right corner"
|
|
117
|
+
{
|
|
118
|
+
"description": "PLACEHOLDER", // Description of the target element
|
|
119
|
+
"screenshot": "path/screenshot.png",
|
|
120
|
+
"text": '{
|
|
121
|
+
"pageSize": {
|
|
122
|
+
"width": 400, // Width of the page
|
|
123
|
+
"height": 905 // Height of the page
|
|
124
|
+
},
|
|
125
|
+
"elementInfos": [
|
|
126
|
+
{
|
|
127
|
+
"id": "1231", // ID of the element
|
|
128
|
+
"indexId": "0", // Index of the element\u{FF0C}The image is labeled to the left of the element
|
|
129
|
+
"attributes": { // Attributes of the element
|
|
130
|
+
"nodeType": "IMG Node", // Type of element, types include: TEXT Node, IMG Node, BUTTON Node, INPUT Node
|
|
131
|
+
"src": "https://ap-southeast-3.m",
|
|
132
|
+
"class": ".img"
|
|
133
|
+
},
|
|
134
|
+
"content": "", // Text content of the element
|
|
135
|
+
"rect": {
|
|
136
|
+
"left": 280, // Distance from the left side of the page
|
|
137
|
+
"top": 8, // Distance from the top of the page
|
|
138
|
+
"width": 44, // Width of the element
|
|
139
|
+
"height": 44 // Height of the element
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "66551", // ID of the element
|
|
144
|
+
"indexId": "1", // Index of the element,The image is labeled to the left of the element
|
|
145
|
+
"attributes": { // Attributes of the element
|
|
146
|
+
"nodeType": "IMG Node", // Type of element, types include: TEXT Node, IMG Node, BUTTON Node, INPUT Node
|
|
147
|
+
"src": "data:image/png;base64,iVBORw0KGgoAAAANSU...",
|
|
148
|
+
"class": ".icon"
|
|
149
|
+
},
|
|
150
|
+
"content": "", // Text content of the element
|
|
151
|
+
"rect": {
|
|
152
|
+
"left": 350, // Distance from the left side of the page
|
|
153
|
+
"top": 16, // Distance from the top of the page
|
|
154
|
+
"width": 25, // Width of the element
|
|
155
|
+
"height": 25 // Height of the element
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
...
|
|
159
|
+
{
|
|
160
|
+
"id": "12344",
|
|
161
|
+
"indexId": "2", // Index of the element\u{FF0C}The image is labeled to the left of the element
|
|
162
|
+
"attributes": {
|
|
163
|
+
"nodeType": "TEXT Node",
|
|
164
|
+
"class": ".product-name"
|
|
165
|
+
},
|
|
166
|
+
"center": [
|
|
167
|
+
288,
|
|
168
|
+
834
|
|
169
|
+
],
|
|
170
|
+
"content": "Mango Drink",
|
|
171
|
+
"rect": {
|
|
172
|
+
"left": 188,
|
|
173
|
+
"top": 827,
|
|
174
|
+
"width": 199,
|
|
175
|
+
"height": 13
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
...
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
'
|
|
182
|
+
}
|
|
183
|
+
\`\`\`
|
|
184
|
+
Output Example:
|
|
185
|
+
\`\`\`json
|
|
186
|
+
{
|
|
187
|
+
"elements": [
|
|
188
|
+
{
|
|
189
|
+
// Describe the reason for finding this element, replace with actual value in practice
|
|
190
|
+
"reason": "Reason for finding element 4: It is located in the upper right corner, is an image type, and according to the screenshot, it is a shopping cart icon button",
|
|
191
|
+
"text": "",
|
|
192
|
+
// ID(**use id not indexId**) of this element, replace with actual value in practice, **use id not indexId**
|
|
193
|
+
"id": "1231"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"isOrderSensitive": true,
|
|
197
|
+
"errors": []
|
|
198
|
+
}
|
|
199
|
+
\`\`\`
|
|
200
|
+
|
|
201
|
+
`;
|
|
202
|
+
}
|
|
203
|
+
const locatorSchema = {
|
|
204
|
+
type: 'json_schema',
|
|
205
|
+
json_schema: {
|
|
206
|
+
name: 'find_elements',
|
|
207
|
+
strict: true,
|
|
208
|
+
schema: {
|
|
209
|
+
type: 'object',
|
|
210
|
+
properties: {
|
|
211
|
+
elements: {
|
|
212
|
+
type: 'array',
|
|
213
|
+
items: {
|
|
214
|
+
type: 'object',
|
|
215
|
+
properties: {
|
|
216
|
+
reason: {
|
|
217
|
+
type: 'string',
|
|
218
|
+
description: 'Reason for finding this element'
|
|
219
|
+
},
|
|
220
|
+
text: {
|
|
221
|
+
type: 'string',
|
|
222
|
+
description: 'Text content of the element'
|
|
223
|
+
},
|
|
224
|
+
id: {
|
|
225
|
+
type: 'string',
|
|
226
|
+
description: 'ID of this element'
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
required: [
|
|
230
|
+
'reason',
|
|
231
|
+
'text',
|
|
232
|
+
'id'
|
|
233
|
+
],
|
|
234
|
+
additionalProperties: false
|
|
235
|
+
},
|
|
236
|
+
description: 'List of found elements'
|
|
237
|
+
},
|
|
238
|
+
isOrderSensitive: {
|
|
239
|
+
type: 'boolean',
|
|
240
|
+
description: "Whether the targetElementDescription is order-sensitive (true/false)"
|
|
241
|
+
},
|
|
242
|
+
errors: {
|
|
243
|
+
type: 'array',
|
|
244
|
+
items: {
|
|
245
|
+
type: 'string'
|
|
246
|
+
},
|
|
247
|
+
description: 'List of error messages, if any'
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
required: [
|
|
251
|
+
'elements',
|
|
252
|
+
'isOrderSensitive',
|
|
253
|
+
'errors'
|
|
254
|
+
],
|
|
255
|
+
additionalProperties: false
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
};
|
|
259
|
+
const findElementPrompt = new PromptTemplate({
|
|
260
|
+
template: `
|
|
261
|
+
Here is the item user want to find:
|
|
262
|
+
=====================================
|
|
263
|
+
{targetElementDescription}
|
|
264
|
+
=====================================
|
|
265
|
+
|
|
266
|
+
{pageDescription}
|
|
267
|
+
`,
|
|
268
|
+
inputVariables: [
|
|
269
|
+
"pageDescription",
|
|
270
|
+
"targetElementDescription"
|
|
271
|
+
]
|
|
272
|
+
});
|
|
273
|
+
export { findElementPrompt, locatorSchema, systemPromptToLocateElement };
|
|
274
|
+
|
|
275
|
+
//# sourceMappingURL=llm-locator.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ai-model\\prompt\\llm-locator.mjs","sources":["webpack://@rpascene/core/./src/ai-model/prompt/llm-locator.ts"],"sourcesContent":["import { PromptTemplate } from '@langchain/core/prompts';\nimport type { TVlModeTypes } from '@rpascene/shared/env';\nimport type { ResponseFormatJSONSchema } from 'openai/resources/index';\nimport { bboxDescription } from './common';\nexport function systemPromptToLocateElement(vlMode: TVlModeTypes | undefined) {\n if (vlMode) {\n const bboxComment = bboxDescription(vlMode);\n return `\n## Role:\nYou are an expert in software testing.\n\n## Objective:\n- Identify elements in screenshots and text that match the user's description.\n- Give the coordinates of the element that matches the user's description best in the screenshot.\n- Determine whether the user's description is order-sensitive (e.g., contains phrases like 'the third item in the list', 'the last button', etc.).\n\n## Output Format:\n\\`\\`\\`json\n{\n \"bbox\": [number, number, number, number], // ${bboxComment}\n \"errors\"?: string[],\n \"isOrderSensitive\": boolean // Whether the targetElementDescription is order-sensitive (true/false)\n}\n\\`\\`\\`\n\nFields:\n* \\`bbox\\` is the bounding box of the element that matches the user's description best in the screenshot\n* \\`isOrderSensitive\\` is a boolean indicating whether the user's description is order-sensitive (true/false)\n* \\`errors\\` is an optional array of error messages (if any)\n\nOrder-sensitive means the description contains phrases like:\n- \"the third item in the list\"\n- \"the last button\"\n- \"the first input box\"\n- \"the second row\"\n\nNot order-sensitive means the description is like:\n- \"confirm button\"\n- \"search box\"\n- \"password input\"\n\nFor example, when an element is found and the description is order-sensitive:\n\\`\\`\\`json\n{\n \"bbox\": [100, 100, 200, 200],\n \"isOrderSensitive\": true,\n \"errors\": []\n}\n\\`\\`\\`\n\nWhen no element is found and the description is not order-sensitive:\n\\`\\`\\`json\n{\n \"bbox\": [],\n \"isOrderSensitive\": false,\n \"errors\": [\"I can see ..., but {some element} is not found\"]\n}\n\\`\\`\\`\n`;\n }\n\n return `\n## Role:\nYou are an expert in software page image (2D) and page element text analysis.\n\n## Objective:\n- Identify elements in screenshots and text that match the user's description.\n- Return JSON data containing the selection reason and element ID.\n- Determine whether the user's description is order-sensitive (e.g., contains phrases like 'the third item in the list', 'the last button', etc.).\n\n## Skills:\n- Image analysis and recognition\n- Multilingual text understanding\n- Software UI design and testing\n\n## Workflow:\n1. Receive the user's element description, screenshot, and element description information. Note that the text may contain non-English characters (e.g., Chinese), indicating that the application may be non-English.\n2. Based on the user's description, locate the target element ID in the list of element descriptions and the screenshot.\n3. Found the required number of elements\n4. Return JSON data containing the selection reason and element ID.\n5. Judge whether the user's description is order-sensitive (see below for definition and examples).\n\n## Constraints:\n- Strictly adhere to the specified location when describing the required element; do not select elements from other locations.\n- Elements in the image with NodeType other than \"TEXT Node\" have been highlighted to identify the element among multiple non-text elements.\n- Accurately identify element information based on the user's description and return the corresponding element ID from the element description information, not extracted from the image.\n- If no elements are found, the \"elements\" array should be empty.\n- The returned data must conform to the specified JSON format.\n- The returned value id information must use the id from element info (important: **use id not indexId, id is hash content**)\n\n## Order-Sensitive Definition:\n- If the description contains phrases like \"the third item in the list\", \"the last button\", \"the first input box\", \"the second row\", etc., it is order-sensitive (isOrderSensitive = true).\n- If the description is like \"confirm button\", \"search box\", \"password input\", etc., it is not order-sensitive (isOrderSensitive = false).\n\n## Output Format:\n\nPlease return the result in JSON format as follows:\n\n\\`\\`\\`json\n{\n \"elements\": [\n // If no matching elements are found, return an empty array []\n {\n \"reason\": \"PLACEHOLDER\", // The thought process for finding the element, replace PLACEHOLDER with your thought process\n \"text\": \"PLACEHOLDER\", // Replace PLACEHOLDER with the text of elementInfo, if none, leave empty\n \"id\": \"PLACEHOLDER\" // Replace PLACEHOLDER with the ID (important: **use id not indexId, id is hash content**) of elementInfo\n }\n // More elements...\n ],\n \"isOrderSensitive\": true, // or false, depending on the user's description\n \"errors\": [] // Array of strings containing any error messages\n}\n\\`\\`\\`\n\n## Example:\nExample 1:\nInput Example:\n\\`\\`\\`json\n// Description: \"Shopping cart icon in the upper right corner\"\n{\n \"description\": \"PLACEHOLDER\", // Description of the target element\n \"screenshot\": \"path/screenshot.png\",\n \"text\": '{\n \"pageSize\": {\n \"width\": 400, // Width of the page\n \"height\": 905 // Height of the page\n },\n \"elementInfos\": [\n {\n \"id\": \"1231\", // ID of the element\n \"indexId\": \"0\", // Index of the element,The image is labeled to the left of the element\n \"attributes\": { // Attributes of the element\n \"nodeType\": \"IMG Node\", // Type of element, types include: TEXT Node, IMG Node, BUTTON Node, INPUT Node\n \"src\": \"https://ap-southeast-3.m\",\n \"class\": \".img\"\n },\n \"content\": \"\", // Text content of the element\n \"rect\": {\n \"left\": 280, // Distance from the left side of the page\n \"top\": 8, // Distance from the top of the page\n \"width\": 44, // Width of the element\n \"height\": 44 // Height of the element\n }\n },\n {\n \"id\": \"66551\", // ID of the element\n \"indexId\": \"1\", // Index of the element,The image is labeled to the left of the element\n \"attributes\": { // Attributes of the element\n \"nodeType\": \"IMG Node\", // Type of element, types include: TEXT Node, IMG Node, BUTTON Node, INPUT Node\n \"src\": \"data:image/png;base64,iVBORw0KGgoAAAANSU...\",\n \"class\": \".icon\"\n },\n \"content\": \"\", // Text content of the element\n \"rect\": {\n \"left\": 350, // Distance from the left side of the page\n \"top\": 16, // Distance from the top of the page\n \"width\": 25, // Width of the element\n \"height\": 25 // Height of the element\n }\n },\n ...\n {\n \"id\": \"12344\",\n \"indexId\": \"2\", // Index of the element,The image is labeled to the left of the element\n \"attributes\": {\n \"nodeType\": \"TEXT Node\",\n \"class\": \".product-name\"\n },\n \"center\": [\n 288,\n 834\n ],\n \"content\": \"Mango Drink\",\n \"rect\": {\n \"left\": 188,\n \"top\": 827,\n \"width\": 199,\n \"height\": 13\n }\n },\n ...\n ]\n }\n '\n}\n\\`\\`\\`\nOutput Example:\n\\`\\`\\`json\n{\n \"elements\": [\n {\n // Describe the reason for finding this element, replace with actual value in practice\n \"reason\": \"Reason for finding element 4: It is located in the upper right corner, is an image type, and according to the screenshot, it is a shopping cart icon button\",\n \"text\": \"\",\n // ID(**use id not indexId**) of this element, replace with actual value in practice, **use id not indexId**\n \"id\": \"1231\"\n }\n ],\n \"isOrderSensitive\": true,\n \"errors\": []\n}\n\\`\\`\\`\n \n `;\n}\n\nexport const locatorSchema: ResponseFormatJSONSchema = {\n type: 'json_schema',\n json_schema: {\n name: 'find_elements',\n strict: true,\n schema: {\n type: 'object',\n properties: {\n elements: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n reason: {\n type: 'string',\n description: 'Reason for finding this element',\n },\n text: {\n type: 'string',\n description: 'Text content of the element',\n },\n id: {\n type: 'string',\n description: 'ID of this element',\n },\n },\n required: ['reason', 'text', 'id'],\n additionalProperties: false,\n },\n description: 'List of found elements',\n },\n isOrderSensitive: {\n type: 'boolean',\n description:\n 'Whether the targetElementDescription is order-sensitive (true/false)',\n },\n errors: {\n type: 'array',\n items: {\n type: 'string',\n },\n description: 'List of error messages, if any',\n },\n },\n required: ['elements', 'isOrderSensitive', 'errors'],\n additionalProperties: false,\n },\n },\n};\n\nexport const findElementPrompt = new PromptTemplate({\n template: `\nHere is the item user want to find:\n=====================================\n{targetElementDescription}\n=====================================\n\n{pageDescription}\n `,\n inputVariables: ['pageDescription', 'targetElementDescription'],\n});\n"],"names":["systemPromptToLocateElement","vlMode","bboxComment","bboxDescription","locatorSchema","findElementPrompt","PromptTemplate"],"mappings":";;AAIO,SAASA,4BAA4BC,MAAgC;IAC1E,IAAIA,QAAQ;QACV,MAAMC,cAAcC,gBAAgBF;QACpC,OAAO,CAAC;;;;;;;;;;;;gDAYoC,EAAEC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuC9D,CAAC;IACC;IAEA,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8IR,CAAC;AACH;AAEO,MAAME,gBAA0C;IACrD,MAAM;IACN,aAAa;QACX,MAAM;QACN,QAAQ;QACR,QAAQ;YACN,MAAM;YACN,YAAY;gBACV,UAAU;oBACR,MAAM;oBACN,OAAO;wBACL,MAAM;wBACN,YAAY;4BACV,QAAQ;gCACN,MAAM;gCACN,aAAa;4BACf;4BACA,MAAM;gCACJ,MAAM;gCACN,aAAa;4BACf;4BACA,IAAI;gCACF,MAAM;gCACN,aAAa;4BACf;wBACF;wBACA,UAAU;4BAAC;4BAAU;4BAAQ;yBAAK;wBAClC,sBAAsB;oBACxB;oBACA,aAAa;gBACf;gBACA,kBAAkB;oBAChB,MAAM;oBACN,aACE;gBACJ;gBACA,QAAQ;oBACN,MAAM;oBACN,OAAO;wBACL,MAAM;oBACR;oBACA,aAAa;gBACf;YACF;YACA,UAAU;gBAAC;gBAAY;gBAAoB;aAAS;YACpD,sBAAsB;QACxB;IACF;AACF;AAEO,MAAMC,oBAAoB,IAAIC,eAAe;IAClD,UAAU,CAAC;;;;;;;EAOX,CAAC;IACD,gBAAgB;QAAC;QAAmB;KAA2B;AACjE"}
|