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: operate/models/prompts.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
You have 4 possible operation actions available to you. The `pyautogui` library will be used to execute your decision. Your output will be used in a `json.loads` loads statement.
13
13
14
14
1. click - Move mouse and click
15
-
[{{ "thought": "write a thought here", "operation": "click", "x": "x percent (e.g. 0.10)", "y": "y percent (e.g. 0.13)" }}] # 'percent' refers to the percentage of the screen's dimensions in decimal format
15
+
[{{ "thought": "write a thought here", "operation": "click", "x": "x percent (e.g. 0.10)", "y": "y percent (e.g. 0.13)" }}] # "percent" refers to the percentage of the screen's dimensions in decimal format
16
16
17
17
2. write - Write with your keyboard
18
18
[{{ "thought": "write a thought here", "operation": "write", "content": "text to write here" }}]
@@ -49,15 +49,15 @@
49
49
Objective: {objective} # take the next best action for this objective
50
50
"""
51
51
52
-
SYSTEM_PROMPT_WIN_LINUX="""
52
+
SYSTEM_PROMPT_WIN_LINUX="""
53
53
You are operating a computer, using the same operating system as a human.
54
54
55
55
From looking at the screen, the objective, and your previous actions, take the next best series of action.
56
56
57
57
You have 4 possible operation actions available to you. The `pyautogui` library will be used to execute your decision. Your output will be used in a `json.loads` loads statement.
58
58
59
59
1. click - Move mouse and click
60
-
[{{ "thought": "write a thought here", "operation": "click", "x": "x percent (e.g. 0.10)", "y": "y percent (e.g. 0.13)" }}] # 'percent' refers to the percentage of the screen's dimensions in decimal format
60
+
[{{ "thought": "write a thought here", "operation": "click", "x": "x percent (e.g. 0.10)", "y": "y percent (e.g. 0.13)" }}] # "percent" refers to the percentage of the screen's dimensions in decimal format
61
61
62
62
2. write - Write with your keyboard
63
63
[{{ "thought": "write a thought here", "operation": "write", "content": "text to write here" }}]
0 commit comments