@midscene/core 0.25.4-beta-20250808064529.0 → 0.25.4-beta-20250811113343.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/es/ai-model.d.ts +3 -3
- package/dist/es/ai-model.js +1 -1
- package/dist/es/{chunk-I5LBWOQA.js → chunk-5IZMFZPA.js} +247 -254
- package/dist/es/chunk-5IZMFZPA.js.map +1 -0
- package/dist/es/{chunk-UIEDQYHD.js → chunk-H5PRBRMX.js} +3 -3
- package/dist/es/index.d.ts +4 -4
- package/dist/es/index.js +2 -2
- package/dist/es/{llm-planning-92cec090.d.ts → llm-planning-374b74b8.d.ts} +2 -1
- package/dist/es/{types-b4a208c6.d.ts → types-16cd9f75.d.ts} +10 -1
- package/dist/es/utils.d.ts +1 -1
- package/dist/es/utils.js +1 -1
- package/dist/lib/ai-model.d.ts +3 -3
- package/dist/lib/ai-model.js +2 -2
- package/dist/lib/{chunk-I5LBWOQA.js → chunk-5IZMFZPA.js} +236 -243
- package/dist/lib/chunk-5IZMFZPA.js.map +1 -0
- package/dist/lib/{chunk-UIEDQYHD.js → chunk-H5PRBRMX.js} +3 -3
- package/dist/lib/index.d.ts +4 -4
- package/dist/lib/index.js +12 -12
- package/dist/lib/{llm-planning-92cec090.d.ts → llm-planning-374b74b8.d.ts} +2 -1
- package/dist/{types/types-b4a208c6.d.ts → lib/types-16cd9f75.d.ts} +10 -1
- package/dist/lib/utils.d.ts +1 -1
- package/dist/lib/utils.js +2 -2
- package/dist/types/ai-model.d.ts +3 -3
- package/dist/types/index.d.ts +4 -4
- package/dist/types/{llm-planning-92cec090.d.ts → llm-planning-374b74b8.d.ts} +2 -1
- package/dist/{lib/types-b4a208c6.d.ts → types/types-16cd9f75.d.ts} +10 -1
- package/dist/types/utils.d.ts +1 -1
- package/package.json +3 -3
- package/dist/es/chunk-I5LBWOQA.js.map +0 -1
- package/dist/lib/chunk-I5LBWOQA.js.map +0 -1
- /package/dist/es/{chunk-UIEDQYHD.js.map → chunk-H5PRBRMX.js.map} +0 -0
- /package/dist/lib/{chunk-UIEDQYHD.js.map → chunk-H5PRBRMX.js.map} +0 -0
|
@@ -633,179 +633,80 @@ Here is the item user want to find:
|
|
|
633
633
|
});
|
|
634
634
|
|
|
635
635
|
// src/ai-model/prompt/llm-planning.ts
|
|
636
|
+
var _assert = require('assert'); var _assert2 = _interopRequireDefault(_assert);
|
|
636
637
|
|
|
637
|
-
|
|
638
|
-
// src/image/index.ts
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
// src/ai-model/prompt/util.ts
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
function describeSize(size) {
|
|
659
|
-
return `${size.width} x ${size.height}`;
|
|
660
|
-
}
|
|
661
|
-
var distanceThreshold = 16;
|
|
662
|
-
function elementByPositionWithElementInfo(treeRoot, position, options) {
|
|
663
|
-
const requireStrictDistance = _nullishCoalesce(_optionalChain([options, 'optionalAccess', _10 => _10.requireStrictDistance]), () => ( true));
|
|
664
|
-
const filterPositionElements = _nullishCoalesce(_optionalChain([options, 'optionalAccess', _11 => _11.filterPositionElements]), () => ( false));
|
|
665
|
-
_utils.assert.call(void 0, typeof position !== "undefined", "position is required for query");
|
|
666
|
-
const matchingElements = [];
|
|
667
|
-
function dfs(node) {
|
|
668
|
-
if (_optionalChain([node, 'optionalAccess', _12 => _12.node])) {
|
|
669
|
-
const item = node.node;
|
|
670
|
-
if (item.rect.left <= position.x && position.x <= item.rect.left + item.rect.width && item.rect.top <= position.y && position.y <= item.rect.top + item.rect.height) {
|
|
671
|
-
if (!(filterPositionElements && _optionalChain([item, 'access', _13 => _13.attributes, 'optionalAccess', _14 => _14.nodeType]) === _constants.NodeType.POSITION) && item.isVisible) {
|
|
672
|
-
matchingElements.push(item);
|
|
673
|
-
}
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
for (const child of node.children) {
|
|
677
|
-
dfs(child);
|
|
678
|
-
}
|
|
679
|
-
}
|
|
680
|
-
dfs(treeRoot);
|
|
681
|
-
if (matchingElements.length === 0) {
|
|
682
|
-
return void 0;
|
|
683
|
-
}
|
|
684
|
-
const element = matchingElements.reduce((smallest, current) => {
|
|
685
|
-
const smallestArea = smallest.rect.width * smallest.rect.height;
|
|
686
|
-
const currentArea = current.rect.width * current.rect.height;
|
|
687
|
-
return currentArea < smallestArea ? current : smallest;
|
|
688
|
-
});
|
|
689
|
-
const distanceToCenter = distance(
|
|
690
|
-
{ x: element.center[0], y: element.center[1] },
|
|
691
|
-
position
|
|
692
|
-
);
|
|
693
|
-
if (requireStrictDistance) {
|
|
694
|
-
return distanceToCenter <= distanceThreshold ? element : void 0;
|
|
695
|
-
}
|
|
696
|
-
return element;
|
|
697
|
-
}
|
|
698
|
-
function distance(point1, point2) {
|
|
699
|
-
return Math.sqrt((point1.x - point2.x) ** 2 + (point1.y - point2.y) ** 2);
|
|
700
|
-
}
|
|
701
|
-
var samplePageDescription = `
|
|
702
|
-
And the page is described as follows:
|
|
703
|
-
====================
|
|
704
|
-
The size of the page: 1280 x 720
|
|
705
|
-
Some of the elements are marked with a rectangle in the screenshot corresponding to the markerId, some are not.
|
|
706
|
-
|
|
707
|
-
Description of all the elements in screenshot:
|
|
708
|
-
<div id="969f1637" markerId="1" left="100" top="100" width="100" height="100"> // The markerId indicated by the rectangle label in the screenshot
|
|
709
|
-
<h4 id="b211ecb2" markerId="5" left="150" top="150" width="90" height="60">
|
|
710
|
-
The username is accepted
|
|
711
|
-
</h4>
|
|
712
|
-
...many more
|
|
713
|
-
</div>
|
|
714
|
-
====================
|
|
715
|
-
`;
|
|
716
|
-
async function describeUserPage(context, opt) {
|
|
717
|
-
const { screenshotBase64 } = context;
|
|
718
|
-
let width;
|
|
719
|
-
let height;
|
|
720
|
-
if (context.size) {
|
|
721
|
-
({ width, height } = context.size);
|
|
722
|
-
} else {
|
|
723
|
-
const imgSize = await _img.imageInfoOfBase64.call(void 0, screenshotBase64);
|
|
724
|
-
({ width, height } = imgSize);
|
|
725
|
-
}
|
|
726
|
-
const treeRoot = context.tree;
|
|
727
|
-
const idElementMap = {};
|
|
728
|
-
const flatElements = _extractor.treeToList.call(void 0, treeRoot);
|
|
729
|
-
if (_optionalChain([opt, 'optionalAccess', _15 => _15.domIncluded]) === true && flatElements.length >= 5e3) {
|
|
730
|
-
console.warn(
|
|
731
|
-
'The number of elements is too large, it may cause the prompt to be too long, please use domIncluded: "visible-only" to reduce the number of elements'
|
|
732
|
-
);
|
|
733
|
-
}
|
|
734
|
-
flatElements.forEach((element) => {
|
|
735
|
-
idElementMap[element.id] = element;
|
|
736
|
-
if (typeof element.indexId !== "undefined") {
|
|
737
|
-
idElementMap[`${element.indexId}`] = element;
|
|
738
|
-
}
|
|
739
|
-
});
|
|
740
|
-
let pageDescription = "";
|
|
741
|
-
const visibleOnly = _nullishCoalesce(_optionalChain([opt, 'optionalAccess', _16 => _16.visibleOnly]), () => ( _optionalChain([opt, 'optionalAccess', _17 => _17.domIncluded]) === "visible-only"));
|
|
742
|
-
if (_optionalChain([opt, 'optionalAccess', _18 => _18.domIncluded]) || !_env.vlLocateMode.call(void 0, )) {
|
|
743
|
-
const contentTree = await _extractor.descriptionOfTree.call(void 0,
|
|
744
|
-
treeRoot,
|
|
745
|
-
_optionalChain([opt, 'optionalAccess', _19 => _19.truncateTextLength]),
|
|
746
|
-
_optionalChain([opt, 'optionalAccess', _20 => _20.filterNonTextContent]),
|
|
747
|
-
visibleOnly
|
|
748
|
-
);
|
|
749
|
-
const sizeDescription = describeSize({ width, height });
|
|
750
|
-
pageDescription = `The size of the page: ${sizeDescription}
|
|
751
|
-
The page elements tree:
|
|
752
|
-
${contentTree}`;
|
|
753
|
-
}
|
|
754
|
-
return {
|
|
755
|
-
description: pageDescription,
|
|
756
|
-
elementById(idOrIndexId) {
|
|
757
|
-
_utils.assert.call(void 0, typeof idOrIndexId !== "undefined", "id is required for query");
|
|
758
|
-
const item = idElementMap[`${idOrIndexId}`];
|
|
759
|
-
return item;
|
|
760
|
-
},
|
|
761
|
-
elementByPosition(position, size) {
|
|
762
|
-
return elementByPositionWithElementInfo(treeRoot, position);
|
|
763
|
-
},
|
|
764
|
-
insertElementByPosition(position) {
|
|
765
|
-
const element = _extractor.generateElementByPosition.call(void 0, position);
|
|
766
|
-
treeRoot.children.push({
|
|
767
|
-
node: element,
|
|
768
|
-
children: []
|
|
769
|
-
});
|
|
770
|
-
flatElements.push(element);
|
|
771
|
-
idElementMap[element.id] = element;
|
|
772
|
-
return element;
|
|
773
|
-
},
|
|
774
|
-
size: { width, height }
|
|
775
|
-
};
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
// src/ai-model/prompt/llm-planning.ts
|
|
779
638
|
var vlCoTLog = `"what_the_user_wants_to_do_next_by_instruction": string, // What the user wants to do according to the instruction and previous logs. `;
|
|
780
|
-
var vlCurrentLog = `"log": string, // Log what the next one action (ONLY ONE!) you can do according to the screenshot and the instruction. The typical log looks like "Now i want to use action '{
|
|
781
|
-
var llmCurrentLog = `"log": string, // Log what the next actions you can do according to the screenshot and the instruction. The typical log looks like "Now i want to use action '{
|
|
639
|
+
var vlCurrentLog = `"log": string, // Log what the next one action (ONLY ONE!) you can do according to the screenshot and the instruction. The typical log looks like "Now i want to use action '{ action-type }' to do .. first". If no action should be done, log the reason. ". Use the same language as the user's instruction.`;
|
|
640
|
+
var llmCurrentLog = `"log": string, // Log what the next actions you can do according to the screenshot and the instruction. The typical log looks like "Now i want to use action '{ action-type }' to do ..". If no action should be done, log the reason. ". Use the same language as the user's instruction.`;
|
|
782
641
|
var commonOutputFields = `"error"?: string, // Error messages about unexpected situations, if any. Only think it is an error when the situation is not expected according to the instruction. Use the same language as the user's instruction.
|
|
783
642
|
"more_actions_needed_by_instruction": boolean, // Consider if there is still more action(s) to do after the action in "Log" is done, according to the instruction. If so, set this field to true. Otherwise, set it to false.`;
|
|
784
643
|
var vlLocateParam = "locate: {bbox: [number, number, number, number], prompt: string }";
|
|
644
|
+
var llmLocateParam = `locate: {"id": string, "prompt": string}`;
|
|
645
|
+
var descriptionForAction = (action, locatorScheme) => {
|
|
646
|
+
const tab = " ";
|
|
647
|
+
let locateParam = "";
|
|
648
|
+
if (action.location === "required") {
|
|
649
|
+
locateParam = locatorScheme;
|
|
650
|
+
} else if (action.location === "optional") {
|
|
651
|
+
locateParam = `${locatorScheme} | null`;
|
|
652
|
+
} else if (action.location === false) {
|
|
653
|
+
locateParam = "";
|
|
654
|
+
}
|
|
655
|
+
const locatorParam = locateParam ? `${tab}- ${locateParam}` : "";
|
|
656
|
+
let whatToLocate = "";
|
|
657
|
+
if (action.whatToLocate) {
|
|
658
|
+
if (!locateParam) {
|
|
659
|
+
console.warn(
|
|
660
|
+
`whatToLocate is provided for action ${action.name}, but location is not required or optional. The whatToLocate will be ignored.`
|
|
661
|
+
);
|
|
662
|
+
} else {
|
|
663
|
+
whatToLocate = `${tab}- whatToLocate: ${action.whatToLocate}`;
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
let paramSchema = "";
|
|
667
|
+
if (action.paramSchema) {
|
|
668
|
+
paramSchema = `${tab}- paramSchema: ${action.paramSchema}`;
|
|
669
|
+
}
|
|
670
|
+
let paramDescription = "";
|
|
671
|
+
if (action.paramDescription) {
|
|
672
|
+
_assert2.default.call(void 0,
|
|
673
|
+
paramSchema,
|
|
674
|
+
`paramSchema is required when paramDescription is provided for action ${action.name}, but got ${action.paramSchema}`
|
|
675
|
+
);
|
|
676
|
+
paramDescription = `${tab}- paramDescription: ${action.paramDescription}`;
|
|
677
|
+
}
|
|
678
|
+
const fields = [
|
|
679
|
+
paramSchema,
|
|
680
|
+
paramDescription,
|
|
681
|
+
locatorParam,
|
|
682
|
+
whatToLocate
|
|
683
|
+
].filter(Boolean);
|
|
684
|
+
return `- ${action.name}
|
|
685
|
+
- type: "${action.name}"
|
|
686
|
+
- description: ${action.description}
|
|
687
|
+
${fields.join("\n")}
|
|
688
|
+
`.trim();
|
|
689
|
+
};
|
|
785
690
|
var systemTemplateOfVLPlanning = ({
|
|
786
|
-
|
|
691
|
+
actionSpace,
|
|
787
692
|
vlMode
|
|
788
|
-
}) =>
|
|
693
|
+
}) => {
|
|
694
|
+
const actionNameList = actionSpace.map((action) => action.name).join(", ");
|
|
695
|
+
const actionDescriptionList = actionSpace.map(
|
|
696
|
+
(action) => descriptionForAction(action, vlLocateParam)
|
|
697
|
+
);
|
|
698
|
+
const actionList = actionDescriptionList.join("\n");
|
|
699
|
+
return `
|
|
789
700
|
Target: User will give you a screenshot, an instruction and some previous logs indicating what have been done. Please tell what the next one action is (or null if no action should be done) to do the tasks the instruction requires.
|
|
790
701
|
|
|
791
702
|
Restriction:
|
|
792
703
|
- Don't give extra actions or plans beyond the instruction. ONLY plan for what the instruction requires. For example, don't try to submit the form if the instruction is only to fill something.
|
|
793
|
-
- Always give ONLY ONE action in \`log\` field (or null if no action should be done), instead of multiple actions. Supported actions are
|
|
704
|
+
- Always give ONLY ONE action in \`log\` field (or null if no action should be done), instead of multiple actions. Supported actions are ${actionNameList}.
|
|
794
705
|
- Don't repeat actions in the previous logs.
|
|
795
706
|
- Bbox is the bounding box of the element to be located. It's an array of 4 numbers, representing ${bboxDescription(vlMode)}.
|
|
796
707
|
|
|
797
708
|
Supporting actions:
|
|
798
|
-
|
|
799
|
-
- RightClick: { type: "RightClick", ${vlLocateParam} }
|
|
800
|
-
- Hover: { type: "Hover", ${vlLocateParam} }
|
|
801
|
-
- Input: { type: "Input", ${vlLocateParam}, param: { value: string } } // Replace the input field with a new value. \`value\` is the final that should be filled in the input box. No matter what modifications are required, just provide the final value to replace the existing input value. Giving a blank string means clear the input field.
|
|
802
|
-
- KeyboardPress: { type: "KeyboardPress", param: { value: string } }
|
|
803
|
-
- Scroll: { type: "Scroll", ${vlLocateParam} | null, param: { direction: 'down'(default) | 'up' | 'right' | 'left', scrollType: 'once' (default) | 'untilBottom' | 'untilTop' | 'untilRight' | 'untilLeft', distance: null | number }} // locate is the element to scroll. If it's a page scroll, put \`null\` in the \`locate\` field.
|
|
804
|
-
${pageType === "android" ? `- AndroidBackButton: { type: "AndroidBackButton", param: {} }
|
|
805
|
-
- AndroidHomeButton: { type: "AndroidHomeButton", param: {} }
|
|
806
|
-
- AndroidRecentAppsButton: { type: "AndroidRecentAppsButton", param: {} }
|
|
807
|
-
- AndroidLongPress: { type: "AndroidLongPress", param: { x: number, y: number, duration?: number } }
|
|
808
|
-
- AndroidPull: { type: "AndroidPull", param: { direction: 'up' | 'down', startPoint?: { x: number, y: number }, distance?: number, duration?: number } } // Pull down to refresh (direction: 'down') or pull up to load more (direction: 'up')` : ""}
|
|
709
|
+
${actionList}
|
|
809
710
|
|
|
810
711
|
Field description:
|
|
811
712
|
* The \`prompt\` field inside the \`locate\` field is a short description that could be used to locate the element.
|
|
@@ -840,8 +741,16 @@ this and output the JSON:
|
|
|
840
741
|
}
|
|
841
742
|
}
|
|
842
743
|
`;
|
|
843
|
-
|
|
844
|
-
var systemTemplateOfLLM = ({
|
|
744
|
+
};
|
|
745
|
+
var systemTemplateOfLLM = ({
|
|
746
|
+
actionSpace
|
|
747
|
+
}) => {
|
|
748
|
+
const actionNameList = actionSpace.map((action) => action.name).join(" / ");
|
|
749
|
+
const actionDescriptionList = actionSpace.map(
|
|
750
|
+
(action) => descriptionForAction(action, llmLocateParam)
|
|
751
|
+
);
|
|
752
|
+
const actionList = actionDescriptionList.join("\n");
|
|
753
|
+
return `
|
|
845
754
|
## Role
|
|
846
755
|
|
|
847
756
|
You are a versatile professional in software UI automation. Your outstanding contributions will impact the user experience of billions of users.
|
|
@@ -855,7 +764,7 @@ You are a versatile professional in software UI automation. Your outstanding con
|
|
|
855
764
|
## Workflow
|
|
856
765
|
|
|
857
766
|
1. Receive the screenshot, element description of screenshot(if any), user's instruction and previous logs.
|
|
858
|
-
2. Decompose the user's task into a sequence of actions, and place it in the \`actions\` field. There are different types of actions (
|
|
767
|
+
2. Decompose the user's task into a sequence of actions, and place it in the \`actions\` field. There are different types of actions (${actionNameList}). The "About the action" section below will give you more details.
|
|
859
768
|
3. Precisely locate the target element if it's already shown in the screenshot, put the location info in the \`locate\` field of the action.
|
|
860
769
|
4. If some target elements is not shown in the screenshot, consider the user's instruction is not feasible on this page. Follow the next steps.
|
|
861
770
|
5. Consider whether the user's instruction will be accomplished after all the actions
|
|
@@ -873,65 +782,30 @@ You are a versatile professional in software UI automation. Your outstanding con
|
|
|
873
782
|
|
|
874
783
|
The \`locate\` param is commonly used in the \`param\` field of the action, means to locate the target element to perform the action, it conforms to the following scheme:
|
|
875
784
|
|
|
876
|
-
type LocateParam = {
|
|
785
|
+
type LocateParam = {
|
|
877
786
|
"id": string, // the id of the element found. It should either be the id marked with a rectangle in the screenshot or the id described in the description.
|
|
878
787
|
"prompt"?: string // the description of the element to find. It can only be omitted when locate is null.
|
|
879
|
-
}
|
|
788
|
+
} | null // If it's not on the page, the LocateParam should be null
|
|
880
789
|
|
|
881
790
|
## Supported actions
|
|
882
791
|
|
|
883
792
|
Each action has a \`type\` and corresponding \`param\`. To be detailed:
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
- type: 'Hover'
|
|
889
|
-
* {{ ${llmLocateParam} }}
|
|
890
|
-
- type: 'Input', replace the value in the input field
|
|
891
|
-
* {{ ${llmLocateParam}, param: {{ value: string }} }}
|
|
892
|
-
* \`value\` is the final value that should be filled in the input field. No matter what modifications are required, just provide the final value user should see after the action is done.
|
|
893
|
-
- type: 'KeyboardPress', press a key
|
|
894
|
-
* {{ param: {{ value: string }} }}
|
|
895
|
-
- type: 'Scroll', scroll up or down.
|
|
896
|
-
* {{
|
|
897
|
-
${llmLocateParam},
|
|
898
|
-
param: {{
|
|
899
|
-
direction: 'down'(default) | 'up' | 'right' | 'left',
|
|
900
|
-
scrollType: 'once' (default) | 'untilBottom' | 'untilTop' | 'untilRight' | 'untilLeft',
|
|
901
|
-
distance: null | number
|
|
902
|
-
}}
|
|
903
|
-
}}
|
|
904
|
-
* To scroll some specific element, put the element at the center of the region in the \`locate\` field. If it's a page scroll, put \`null\` in the \`locate\` field.
|
|
905
|
-
* \`param\` is required in this action. If some fields are not specified, use direction \`down\`, \`once\` scroll type, and \`null\` distance.
|
|
906
|
-
* {{ param: {{ button: 'Back' | 'Home' | 'RecentApp' }} }}
|
|
907
|
-
- type: 'ExpectedFalsyCondition'
|
|
908
|
-
* {{ param: {{ reason: string }} }}
|
|
909
|
-
* use this action when the conditional statement talked about in the instruction is falsy.
|
|
910
|
-
- type: 'Sleep'
|
|
911
|
-
* {{ param: {{ timeMs: number }} }}
|
|
912
|
-
${pageType === "android" ? `- type: 'AndroidBackButton', trigger the system "back" operation on Android devices
|
|
913
|
-
* {{ param: {{}} }}
|
|
914
|
-
- type: 'AndroidHomeButton', trigger the system "home" operation on Android devices
|
|
915
|
-
* {{ param: {{}} }}
|
|
916
|
-
- type: 'AndroidRecentAppsButton', trigger the system "recent apps" operation on Android devices
|
|
917
|
-
* {{ param: {{}} }}
|
|
918
|
-
- type: 'AndroidLongPress', trigger a long press on the screen at specified coordinates on Android devices
|
|
919
|
-
* {{ param: {{ x: number, y: number, duration?: number }} }}
|
|
920
|
-
- type: 'AndroidPull', trigger pull down to refresh or pull up actions on Android devices
|
|
921
|
-
* {{ param: {{ direction: 'up' | 'down', startPoint?: {{ x: number, y: number }}, distance?: number, duration?: number }} }}` : ""}
|
|
922
|
-
`;
|
|
793
|
+
${actionList}
|
|
794
|
+
|
|
795
|
+
`.trim();
|
|
796
|
+
};
|
|
923
797
|
var outputTemplate = `
|
|
924
798
|
## Output JSON Format:
|
|
925
799
|
|
|
926
800
|
The JSON format is as follows:
|
|
927
801
|
|
|
928
|
-
{
|
|
802
|
+
{
|
|
929
803
|
"actions": [
|
|
930
804
|
// ... some actions
|
|
931
805
|
],
|
|
932
806
|
${llmCurrentLog}
|
|
933
807
|
${commonOutputFields}
|
|
934
|
-
}
|
|
808
|
+
}
|
|
935
809
|
|
|
936
810
|
## Examples
|
|
937
811
|
|
|
@@ -947,68 +821,62 @@ By viewing the page screenshot and description, you should consider this and out
|
|
|
947
821
|
* Log what these action do: Click the language switch button to open the language options. Wait for 1 second.
|
|
948
822
|
* The task cannot be accomplished (because we cannot see the "English" option now), so the \`more_actions_needed_by_instruction\` field is true.
|
|
949
823
|
|
|
950
|
-
{
|
|
824
|
+
{
|
|
951
825
|
"actions":[
|
|
952
|
-
{
|
|
826
|
+
{
|
|
953
827
|
"type": "Tap",
|
|
954
828
|
"thought": "Click the language switch button to open the language options.",
|
|
955
829
|
"param": null,
|
|
956
|
-
"locate": {
|
|
957
|
-
}
|
|
958
|
-
{
|
|
830
|
+
"locate": { id: "c81c4e9a33", prompt: "The language switch button" }},
|
|
831
|
+
},
|
|
832
|
+
{
|
|
959
833
|
"type": "Sleep",
|
|
960
834
|
"thought": "Wait for 1 second to ensure the language options are displayed.",
|
|
961
|
-
"param": {
|
|
962
|
-
}
|
|
835
|
+
"param": { "timeMs": 1000 },
|
|
836
|
+
}
|
|
963
837
|
],
|
|
964
838
|
"error": null,
|
|
965
839
|
"more_actions_needed_by_instruction": true,
|
|
966
840
|
"log": "Click the language switch button to open the language options. Wait for 1 second",
|
|
967
|
-
}
|
|
841
|
+
}
|
|
968
842
|
|
|
969
843
|
### Example: What NOT to do
|
|
970
844
|
Wrong output:
|
|
971
|
-
{
|
|
845
|
+
{
|
|
972
846
|
"actions":[
|
|
973
|
-
{
|
|
847
|
+
{
|
|
974
848
|
"type": "Tap",
|
|
975
849
|
"thought": "Click the language switch button to open the language options.",
|
|
976
850
|
"param": null,
|
|
977
|
-
"locate": {
|
|
978
|
-
{
|
|
979
|
-
}
|
|
980
|
-
}
|
|
981
|
-
{
|
|
851
|
+
"locate": {
|
|
852
|
+
{ "id": "c81c4e9a33" }, // WRONG: prompt is missing
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
{
|
|
982
856
|
"type": "Tap",
|
|
983
857
|
"thought": "Click the English option",
|
|
984
858
|
"param": null,
|
|
985
859
|
"locate": null, // This means the 'English' option is not shown in the screenshot, the task cannot be accomplished
|
|
986
|
-
}
|
|
860
|
+
}
|
|
987
861
|
],
|
|
988
862
|
"more_actions_needed_by_instruction": false, // WRONG: should be true
|
|
989
863
|
"log": "Click the language switch button to open the language options",
|
|
990
|
-
}
|
|
864
|
+
}
|
|
991
865
|
|
|
992
866
|
Reason:
|
|
993
867
|
* The \`prompt\` is missing in the first 'Locate' action
|
|
994
868
|
* Since the option button is not shown in the screenshot, there are still more actions to be done, so the \`more_actions_needed_by_instruction\` field should be true
|
|
995
869
|
`;
|
|
996
870
|
async function systemPromptToTaskPlanning({
|
|
997
|
-
|
|
871
|
+
actionSpace,
|
|
998
872
|
vlMode
|
|
999
873
|
}) {
|
|
1000
874
|
if (vlMode) {
|
|
1001
|
-
return systemTemplateOfVLPlanning({
|
|
875
|
+
return systemTemplateOfVLPlanning({ actionSpace, vlMode });
|
|
1002
876
|
}
|
|
1003
|
-
|
|
1004
|
-
template: `${systemTemplateOfLLM({ pageType })}
|
|
877
|
+
return `${systemTemplateOfLLM({ actionSpace })}
|
|
1005
878
|
|
|
1006
|
-
${outputTemplate}
|
|
1007
|
-
inputVariables: ["pageDescription"]
|
|
1008
|
-
});
|
|
1009
|
-
return await promptTemplate.format({
|
|
1010
|
-
pageDescription: samplePageDescription
|
|
1011
|
-
});
|
|
879
|
+
${outputTemplate}`;
|
|
1012
880
|
}
|
|
1013
881
|
var planSchema = {
|
|
1014
882
|
type: "json_schema",
|
|
@@ -1290,7 +1158,7 @@ Please check your config.`
|
|
|
1290
1158
|
httpAgent: proxyAgent,
|
|
1291
1159
|
...extraConfig,
|
|
1292
1160
|
defaultHeaders: {
|
|
1293
|
-
..._optionalChain([extraConfig, 'optionalAccess',
|
|
1161
|
+
..._optionalChain([extraConfig, 'optionalAccess', _10 => _10.defaultHeaders]) || {},
|
|
1294
1162
|
[_env.MIDSCENE_API_TYPE]: AIActionTypeValue.toString()
|
|
1295
1163
|
},
|
|
1296
1164
|
dangerouslyAllowBrowser: true
|
|
@@ -1341,7 +1209,7 @@ async function call2(messages, AIActionTypeValue, responseFormat, options) {
|
|
|
1341
1209
|
const debugProfileDetail = _logger.getDebug.call(void 0, "ai:profile:detail");
|
|
1342
1210
|
const startTime = Date.now();
|
|
1343
1211
|
const model = getModelName();
|
|
1344
|
-
const isStreaming = _optionalChain([options, 'optionalAccess',
|
|
1212
|
+
const isStreaming = _optionalChain([options, 'optionalAccess', _11 => _11.stream]) && _optionalChain([options, 'optionalAccess', _12 => _12.onChunk]);
|
|
1345
1213
|
let content;
|
|
1346
1214
|
let accumulated = "";
|
|
1347
1215
|
let usage;
|
|
@@ -1372,8 +1240,8 @@ async function call2(messages, AIActionTypeValue, responseFormat, options) {
|
|
|
1372
1240
|
}
|
|
1373
1241
|
);
|
|
1374
1242
|
for await (const chunk of stream) {
|
|
1375
|
-
const content2 = _optionalChain([chunk, 'access',
|
|
1376
|
-
const reasoning_content = _optionalChain([chunk, 'access',
|
|
1243
|
+
const content2 = _optionalChain([chunk, 'access', _13 => _13.choices, 'optionalAccess', _14 => _14[0], 'optionalAccess', _15 => _15.delta, 'optionalAccess', _16 => _16.content]) || "";
|
|
1244
|
+
const reasoning_content = _optionalChain([chunk, 'access', _17 => _17.choices, 'optionalAccess', _18 => _18[0], 'optionalAccess', _19 => _19.delta, 'optionalAccess', _20 => _20.reasoning_content]) || "";
|
|
1377
1245
|
if (chunk.usage) {
|
|
1378
1246
|
usage = chunk.usage;
|
|
1379
1247
|
}
|
|
@@ -1388,7 +1256,7 @@ async function call2(messages, AIActionTypeValue, responseFormat, options) {
|
|
|
1388
1256
|
};
|
|
1389
1257
|
options.onChunk(chunkData);
|
|
1390
1258
|
}
|
|
1391
|
-
if (_optionalChain([chunk, 'access',
|
|
1259
|
+
if (_optionalChain([chunk, 'access', _21 => _21.choices, 'optionalAccess', _22 => _22[0], 'optionalAccess', _23 => _23.finish_reason])) {
|
|
1392
1260
|
timeCost = Date.now() - startTime;
|
|
1393
1261
|
if (!usage) {
|
|
1394
1262
|
const estimatedTokens = Math.max(
|
|
@@ -1430,7 +1298,7 @@ async function call2(messages, AIActionTypeValue, responseFormat, options) {
|
|
|
1430
1298
|
});
|
|
1431
1299
|
timeCost = Date.now() - startTime;
|
|
1432
1300
|
debugProfileStats(
|
|
1433
|
-
`model, ${model}, mode, ${_env.vlLocateMode.call(void 0, ) || "default"}, ui-tars-version, ${_env.uiTarsModelVersion.call(void 0, )}, prompt-tokens, ${_optionalChain([result, 'access',
|
|
1301
|
+
`model, ${model}, mode, ${_env.vlLocateMode.call(void 0, ) || "default"}, ui-tars-version, ${_env.uiTarsModelVersion.call(void 0, )}, prompt-tokens, ${_optionalChain([result, 'access', _24 => _24.usage, 'optionalAccess', _25 => _25.prompt_tokens]) || ""}, completion-tokens, ${_optionalChain([result, 'access', _26 => _26.usage, 'optionalAccess', _27 => _27.completion_tokens]) || ""}, total-tokens, ${_optionalChain([result, 'access', _28 => _28.usage, 'optionalAccess', _29 => _29.total_tokens]) || ""}, cost-ms, ${timeCost}, requestId, ${result._request_id || ""}`
|
|
1434
1302
|
);
|
|
1435
1303
|
debugProfileDetail(
|
|
1436
1304
|
`model usage detail: ${JSON.stringify(result.usage)}`
|
|
@@ -1472,7 +1340,7 @@ async function call2(messages, AIActionTypeValue, responseFormat, options) {
|
|
|
1472
1340
|
...commonConfig
|
|
1473
1341
|
});
|
|
1474
1342
|
for await (const chunk of stream) {
|
|
1475
|
-
const content2 = _optionalChain([chunk, 'access',
|
|
1343
|
+
const content2 = _optionalChain([chunk, 'access', _30 => _30.delta, 'optionalAccess', _31 => _31.text]) || "";
|
|
1476
1344
|
if (content2) {
|
|
1477
1345
|
accumulated += content2;
|
|
1478
1346
|
const chunkData = {
|
|
@@ -1615,8 +1483,8 @@ function preprocessDoubaoBboxJson(input) {
|
|
|
1615
1483
|
}
|
|
1616
1484
|
function safeParseJson(input) {
|
|
1617
1485
|
const cleanJsonString = extractJSONFromCodeBlock(input);
|
|
1618
|
-
if (_optionalChain([cleanJsonString, 'optionalAccess',
|
|
1619
|
-
return _optionalChain([cleanJsonString, 'access',
|
|
1486
|
+
if (_optionalChain([cleanJsonString, 'optionalAccess', _32 => _32.match, 'call', _33 => _33(/\((\d+),(\d+)\)/)])) {
|
|
1487
|
+
return _optionalChain([cleanJsonString, 'access', _34 => _34.match, 'call', _35 => _35(/\((\d+),(\d+)\)/), 'optionalAccess', _36 => _36.slice, 'call', _37 => _37(1), 'access', _38 => _38.map, 'call', _39 => _39(Number)]);
|
|
1620
1488
|
}
|
|
1621
1489
|
try {
|
|
1622
1490
|
return JSON.parse(cleanJsonString);
|
|
@@ -1633,6 +1501,131 @@ function safeParseJson(input) {
|
|
|
1633
1501
|
throw Error(`failed to parse json response: ${input}`);
|
|
1634
1502
|
}
|
|
1635
1503
|
|
|
1504
|
+
// src/image/index.ts
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
|
|
1512
|
+
|
|
1513
|
+
|
|
1514
|
+
|
|
1515
|
+
// src/ai-model/prompt/util.ts
|
|
1516
|
+
|
|
1517
|
+
|
|
1518
|
+
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
function describeSize(size) {
|
|
1525
|
+
return `${size.width} x ${size.height}`;
|
|
1526
|
+
}
|
|
1527
|
+
var distanceThreshold = 16;
|
|
1528
|
+
function elementByPositionWithElementInfo(treeRoot, position, options) {
|
|
1529
|
+
const requireStrictDistance = _nullishCoalesce(_optionalChain([options, 'optionalAccess', _40 => _40.requireStrictDistance]), () => ( true));
|
|
1530
|
+
const filterPositionElements = _nullishCoalesce(_optionalChain([options, 'optionalAccess', _41 => _41.filterPositionElements]), () => ( false));
|
|
1531
|
+
_utils.assert.call(void 0, typeof position !== "undefined", "position is required for query");
|
|
1532
|
+
const matchingElements = [];
|
|
1533
|
+
function dfs(node) {
|
|
1534
|
+
if (_optionalChain([node, 'optionalAccess', _42 => _42.node])) {
|
|
1535
|
+
const item = node.node;
|
|
1536
|
+
if (item.rect.left <= position.x && position.x <= item.rect.left + item.rect.width && item.rect.top <= position.y && position.y <= item.rect.top + item.rect.height) {
|
|
1537
|
+
if (!(filterPositionElements && _optionalChain([item, 'access', _43 => _43.attributes, 'optionalAccess', _44 => _44.nodeType]) === _constants.NodeType.POSITION) && item.isVisible) {
|
|
1538
|
+
matchingElements.push(item);
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
for (const child of node.children) {
|
|
1543
|
+
dfs(child);
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
dfs(treeRoot);
|
|
1547
|
+
if (matchingElements.length === 0) {
|
|
1548
|
+
return void 0;
|
|
1549
|
+
}
|
|
1550
|
+
const element = matchingElements.reduce((smallest, current) => {
|
|
1551
|
+
const smallestArea = smallest.rect.width * smallest.rect.height;
|
|
1552
|
+
const currentArea = current.rect.width * current.rect.height;
|
|
1553
|
+
return currentArea < smallestArea ? current : smallest;
|
|
1554
|
+
});
|
|
1555
|
+
const distanceToCenter = distance(
|
|
1556
|
+
{ x: element.center[0], y: element.center[1] },
|
|
1557
|
+
position
|
|
1558
|
+
);
|
|
1559
|
+
if (requireStrictDistance) {
|
|
1560
|
+
return distanceToCenter <= distanceThreshold ? element : void 0;
|
|
1561
|
+
}
|
|
1562
|
+
return element;
|
|
1563
|
+
}
|
|
1564
|
+
function distance(point1, point2) {
|
|
1565
|
+
return Math.sqrt((point1.x - point2.x) ** 2 + (point1.y - point2.y) ** 2);
|
|
1566
|
+
}
|
|
1567
|
+
async function describeUserPage(context, opt) {
|
|
1568
|
+
const { screenshotBase64 } = context;
|
|
1569
|
+
let width;
|
|
1570
|
+
let height;
|
|
1571
|
+
if (context.size) {
|
|
1572
|
+
({ width, height } = context.size);
|
|
1573
|
+
} else {
|
|
1574
|
+
const imgSize = await _img.imageInfoOfBase64.call(void 0, screenshotBase64);
|
|
1575
|
+
({ width, height } = imgSize);
|
|
1576
|
+
}
|
|
1577
|
+
const treeRoot = context.tree;
|
|
1578
|
+
const idElementMap = {};
|
|
1579
|
+
const flatElements = _extractor.treeToList.call(void 0, treeRoot);
|
|
1580
|
+
if (_optionalChain([opt, 'optionalAccess', _45 => _45.domIncluded]) === true && flatElements.length >= 5e3) {
|
|
1581
|
+
console.warn(
|
|
1582
|
+
'The number of elements is too large, it may cause the prompt to be too long, please use domIncluded: "visible-only" to reduce the number of elements'
|
|
1583
|
+
);
|
|
1584
|
+
}
|
|
1585
|
+
flatElements.forEach((element) => {
|
|
1586
|
+
idElementMap[element.id] = element;
|
|
1587
|
+
if (typeof element.indexId !== "undefined") {
|
|
1588
|
+
idElementMap[`${element.indexId}`] = element;
|
|
1589
|
+
}
|
|
1590
|
+
});
|
|
1591
|
+
let pageDescription = "";
|
|
1592
|
+
const visibleOnly = _nullishCoalesce(_optionalChain([opt, 'optionalAccess', _46 => _46.visibleOnly]), () => ( _optionalChain([opt, 'optionalAccess', _47 => _47.domIncluded]) === "visible-only"));
|
|
1593
|
+
if (_optionalChain([opt, 'optionalAccess', _48 => _48.domIncluded]) || !_env.vlLocateMode.call(void 0, )) {
|
|
1594
|
+
const contentTree = await _extractor.descriptionOfTree.call(void 0,
|
|
1595
|
+
treeRoot,
|
|
1596
|
+
_optionalChain([opt, 'optionalAccess', _49 => _49.truncateTextLength]),
|
|
1597
|
+
_optionalChain([opt, 'optionalAccess', _50 => _50.filterNonTextContent]),
|
|
1598
|
+
visibleOnly
|
|
1599
|
+
);
|
|
1600
|
+
const sizeDescription = describeSize({ width, height });
|
|
1601
|
+
pageDescription = `The size of the page: ${sizeDescription}
|
|
1602
|
+
The page elements tree:
|
|
1603
|
+
${contentTree}`;
|
|
1604
|
+
}
|
|
1605
|
+
return {
|
|
1606
|
+
description: pageDescription,
|
|
1607
|
+
elementById(idOrIndexId) {
|
|
1608
|
+
_utils.assert.call(void 0, typeof idOrIndexId !== "undefined", "id is required for query");
|
|
1609
|
+
const item = idElementMap[`${idOrIndexId}`];
|
|
1610
|
+
return item;
|
|
1611
|
+
},
|
|
1612
|
+
elementByPosition(position, size) {
|
|
1613
|
+
return elementByPositionWithElementInfo(treeRoot, position);
|
|
1614
|
+
},
|
|
1615
|
+
insertElementByPosition(position) {
|
|
1616
|
+
const element = _extractor.generateElementByPosition.call(void 0, position);
|
|
1617
|
+
treeRoot.children.push({
|
|
1618
|
+
node: element,
|
|
1619
|
+
children: []
|
|
1620
|
+
});
|
|
1621
|
+
flatElements.push(element);
|
|
1622
|
+
idElementMap[element.id] = element;
|
|
1623
|
+
return element;
|
|
1624
|
+
},
|
|
1625
|
+
size: { width, height }
|
|
1626
|
+
};
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1636
1629
|
// src/ai-model/prompt/playwright-generator.ts
|
|
1637
1630
|
|
|
1638
1631
|
|
|
@@ -2518,7 +2511,7 @@ async function plan(userInstruction, opts) {
|
|
|
2518
2511
|
const { screenshotBase64, size } = context;
|
|
2519
2512
|
const { description: pageDescription, elementById } = await describeUserPage(context);
|
|
2520
2513
|
const systemPrompt = await systemPromptToTaskPlanning({
|
|
2521
|
-
|
|
2514
|
+
actionSpace: opts.actionSpace,
|
|
2522
2515
|
vlMode: _env.vlLocateMode.call(void 0, )
|
|
2523
2516
|
});
|
|
2524
2517
|
const taskBackgroundContextText = generateTaskBackgroundContext(
|
|
@@ -2920,6 +2913,6 @@ async function resizeImageForUiTars(imageBase64, size) {
|
|
|
2920
2913
|
|
|
2921
2914
|
|
|
2922
2915
|
|
|
2923
|
-
exports.systemPromptToLocateElement = systemPromptToLocateElement; exports.
|
|
2916
|
+
exports.systemPromptToLocateElement = systemPromptToLocateElement; exports.call = call2; exports.callToGetJSONObject = callToGetJSONObject; exports.callAiFnWithStringResponse = callAiFnWithStringResponse; exports.AIActionType = AIActionType; exports.callAiFn = callAiFn; exports.adaptBboxToRect = adaptBboxToRect; exports.expandSearchArea = expandSearchArea; exports.elementByPositionWithElementInfo = elementByPositionWithElementInfo; exports.describeUserPage = describeUserPage; exports.generateYamlTest = generateYamlTest; exports.generateYamlTestStream = generateYamlTestStream; exports.generatePlaywrightTest = generatePlaywrightTest; exports.generatePlaywrightTestStream = generatePlaywrightTestStream; exports.AiLocateElement = AiLocateElement; exports.AiLocateSection = AiLocateSection; exports.AiExtractElementInfo = AiExtractElementInfo; exports.AiAssert = AiAssert; exports.plan = plan; exports.vlmPlanning = vlmPlanning; exports.resizeImageForUiTars = resizeImageForUiTars;
|
|
2924
2917
|
|
|
2925
|
-
//# sourceMappingURL=chunk-
|
|
2918
|
+
//# sourceMappingURL=chunk-5IZMFZPA.js.map
|