Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update e2bqwen.py
Browse files- e2bqwen.py +4 -4
e2bqwen.py
CHANGED
@@ -131,21 +131,21 @@ final_answer("Done")
|
|
131 |
|
132 |
<click_guidelines>
|
133 |
Look at elements on the screen to determine what to click or interact with.
|
134 |
-
Use precise coordinates for mouse movements and clicks. When clicking an element, ALWAYS CLICK THE MIDDLE of that element, not UNDER OR ABOVE! Else you risk to miss it.
|
135 |
-
Sometimes you may have missed a click, so never assume that you're on the right page, always make sure that your previous action worked. In the screenshot you can see if the mouse is out of the clickable area. Pay special attention to this.
|
136 |
-
Remember the tools that you have as those can save you time, for example open_url to enter a website rather than searching for the browser in the OS.
|
137 |
Whenever you click, MAKE SURE to click in the middle of the button, text, link or any other clickable element. Not under, not on the side. IN THE MIDDLE. In menus it is always better to click in the middle of the text rather than in the tiny icon. Calculate extremelly well the coordinates. A mistake here can make the full task fail.
|
|
|
|
|
138 |
</click_guidelines>
|
139 |
|
140 |
<general_guidelines>
|
141 |
Always analyze the latest screenshot carefully before performing actions.
|
142 |
You can wait for appropriate loading times using the wait() tool. But don't wait forever, sometimes you've just misclicked and the process didn't launch.
|
143 |
-
Use precise coordinates based on the current screenshot. The desktop has a resolution of <<resolution_x>>x<<resolution_y>> pixels: NEVER USE HYPOTHETIC COORDINATES, USE TRUE COORDINATES that you can see from the screenshot.
|
144 |
Execute one action at a time: don't try to pack a click and typing in one action.
|
145 |
On each step, look at the last screenshot and action to validate if previous steps worked and decide the next action. If you repeated an action already without effect, it means that this action is useless: don't repeat it and try something else.
|
146 |
Use click to move through menus on the desktop and scroll for web and specific applications.
|
147 |
Always analyze the latest screenshot carefully before performing actions.
|
148 |
Desktop menus usually expand with more options, the tiny triangle next to some text in a menu means that menu expands. For example in Office in the Applications menu expands showing presentation or writing applications.
|
|
|
149 |
</general_guidelines>
|
150 |
"""
|
151 |
|
|
|
131 |
|
132 |
<click_guidelines>
|
133 |
Look at elements on the screen to determine what to click or interact with.
|
134 |
+
Use precise coordinates based on the current screenshot for mouse movements and clicks. When clicking an element, ALWAYS CLICK THE MIDDLE of that element, not UNDER OR ABOVE! Else you risk to miss it.
|
|
|
|
|
135 |
Whenever you click, MAKE SURE to click in the middle of the button, text, link or any other clickable element. Not under, not on the side. IN THE MIDDLE. In menus it is always better to click in the middle of the text rather than in the tiny icon. Calculate extremelly well the coordinates. A mistake here can make the full task fail.
|
136 |
+
The desktop has a resolution of <<resolution_x>>x<<resolution_y>> pixels: NEVER USE HYPOTHETIC COORDINATES, USE TRUE COORDINATES that you can see from the screenshot.
|
137 |
+
Sometimes you may have missed a click, so never assume that you're on the right page, always make sure that your previous action worked. In the screenshot you can see if the mouse is out of the clickable area. Pay special attention to this.
|
138 |
</click_guidelines>
|
139 |
|
140 |
<general_guidelines>
|
141 |
Always analyze the latest screenshot carefully before performing actions.
|
142 |
You can wait for appropriate loading times using the wait() tool. But don't wait forever, sometimes you've just misclicked and the process didn't launch.
|
|
|
143 |
Execute one action at a time: don't try to pack a click and typing in one action.
|
144 |
On each step, look at the last screenshot and action to validate if previous steps worked and decide the next action. If you repeated an action already without effect, it means that this action is useless: don't repeat it and try something else.
|
145 |
Use click to move through menus on the desktop and scroll for web and specific applications.
|
146 |
Always analyze the latest screenshot carefully before performing actions.
|
147 |
Desktop menus usually expand with more options, the tiny triangle next to some text in a menu means that menu expands. For example in Office in the Applications menu expands showing presentation or writing applications.
|
148 |
+
Remember the tools that you have as those can save you time, for example open_url to enter a website rather than searching for the browser in the OS.
|
149 |
</general_guidelines>
|
150 |
"""
|
151 |
|