Skip to content

Commit 43a7cad

Browse files
committed
Update to the correct name SYSTEM_PROMPT_STANDARD
1 parent 5c0e5e0 commit 43a7cad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

operate/models/prompts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
USER_QUESTION = "Hello, I can help you with anything. What would you like done?"
99

1010

11-
SYSTEM_PROMPT_MAC = """
11+
SYSTEM_PROMPT_STANDARD = """
1212
You are operating a {operating_system} computer, using the same operating system as a human.
1313
1414
From looking at the screen, the objective, and your previous actions, take the next best series of action.
@@ -216,7 +216,7 @@ def get_system_prompt(model, objective):
216216
operating_system=operating_system,
217217
)
218218
else:
219-
prompt = SYSTEM_PROMPT_MAC.format(
219+
prompt = SYSTEM_PROMPT_STANDARD.format(
220220
objective=objective,
221221
cmd_string=cmd_string,
222222
os_search_str=os_search_str,

0 commit comments

Comments
 (0)