You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/midscene/src/ai-model/prompt/llm-planning.ts
+5-3
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,8 @@ By viewing the page screenshot and description, you should consider this and out
130
130
131
131
* The main steps should be: tap the switch button, sleep, and tap the 'English' option
132
132
* The language switch button is shown in the screenshot, but it's not marked with a rectangle. So we have to use the page description to find the element. By carefully checking the context information (coordinates, attributes, content, etc.), you can find the element.
133
-
* The "English" option button is not shown in the screenshot now, it means it may only show after the previous actions are finished. So put \`null\` in the \`locate\` field of the last action.
133
+
* The "English" option button is not shown in the screenshot now, it means it may only show after the previous actions are finished. So don't plan any action to do this.
134
+
* Log what these action do: Click the language switch button to open the language options. Wait for 1 second.
134
135
* The task cannot be accomplished (because we cannot see the "English" option now), so the \`finish\` field is false.
135
136
136
137
{{
@@ -149,7 +150,7 @@ By viewing the page screenshot and description, you should consider this and out
149
150
],
150
151
"error": null,
151
152
"finish": false,
152
-
"log": "Click the language switch button to open the language options. Wait for 1 second to ensure the language options are displayed",
153
+
"log": "Click the language switch button to open the language options. Wait for 1 second",
0 commit comments