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: src/core/prompts/__tests__/__snapshots__/system.test.ts.snap
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1104,7 +1104,7 @@ Example: Requesting to write to frontend-config.json
1104
1104
Description: Request to interact with a Puppeteer-controlled browser. Every action, except \`close\`, will be responded to with a screenshot of the browser's current state, along with any new console logs. You may only perform one browser action per message, and wait for the user's response including a screenshot and logs to determine the next action.
1105
1105
- The sequence of actions **must always start with** launching the browser at a URL, and **must always end with** closing the browser. If you need to visit a new URL that is not possible to navigate to from the current webpage, you must first close the browser, then launch again at the new URL.
1106
1106
- While the browser is active, only the \`browser_action\` tool can be used. No other tools should be called during this time. You may proceed to use other tools only after closing the browser. For example if you run into an error and need to fix a file, you must close the browser, then use other tools to make the necessary changes, then re-launch the browser to verify the result.
1107
-
- The browser window has a resolution of **900x600** pixels. When performing any click actions, ensure the coordinates are within this resolution range.
1107
+
- The browser window has a resolution of **1280x800** pixels. When performing any click actions, ensure the coordinates are within this resolution range.
1108
1108
- Before clicking on any elements such as icons, links, or buttons, you must consult the provided screenshot of the page to determine the coordinates of the element. The click should be targeted at the **center of the element**, not on its edges.
1109
1109
Parameters:
1110
1110
- action: (required) The action to perform. The available actions are:
@@ -1126,7 +1126,7 @@ Parameters:
1126
1126
- Example: \`<action>close</action>\`
1127
1127
- url: (optional) Use this for providing the URL for the \`launch\` action.
1128
1128
* Example: <url>https://example.com</url>
1129
-
- coordinate: (optional) The X and Y coordinates for the \`click\` action. Coordinates should be within the **900x600** resolution.
1129
+
- coordinate: (optional) The X and Y coordinates for the \`click\` action. Coordinates should be within the **1280x800** resolution.
1130
1130
* Example: <coordinate>450,300</coordinate>
1131
1131
- text: (optional) Use this for providing the text for the \`type\` action.
1132
1132
* Example: <text>Hello, world!</text>
@@ -2225,7 +2225,7 @@ Example: Requesting to write to frontend-config.json
2225
2225
Description: Request to interact with a Puppeteer-controlled browser. Every action, except \`close\`, will be responded to with a screenshot of the browser's current state, along with any new console logs. You may only perform one browser action per message, and wait for the user's response including a screenshot and logs to determine the next action.
2226
2226
- The sequence of actions **must always start with** launching the browser at a URL, and **must always end with** closing the browser. If you need to visit a new URL that is not possible to navigate to from the current webpage, you must first close the browser, then launch again at the new URL.
2227
2227
- While the browser is active, only the \`browser_action\` tool can be used. No other tools should be called during this time. You may proceed to use other tools only after closing the browser. For example if you run into an error and need to fix a file, you must close the browser, then use other tools to make the necessary changes, then re-launch the browser to verify the result.
2228
-
- The browser window has a resolution of **900x600** pixels. When performing any click actions, ensure the coordinates are within this resolution range.
2228
+
- The browser window has a resolution of **1280x800** pixels. When performing any click actions, ensure the coordinates are within this resolution range.
2229
2229
- Before clicking on any elements such as icons, links, or buttons, you must consult the provided screenshot of the page to determine the coordinates of the element. The click should be targeted at the **center of the element**, not on its edges.
2230
2230
Parameters:
2231
2231
- action: (required) The action to perform. The available actions are:
@@ -2247,7 +2247,7 @@ Parameters:
2247
2247
- Example: \`<action>close</action>\`
2248
2248
- url: (optional) Use this for providing the URL for the \`launch\` action.
2249
2249
* Example: <url>https://example.com</url>
2250
-
- coordinate: (optional) The X and Y coordinates for the \`click\` action. Coordinates should be within the **900x600** resolution.
2250
+
- coordinate: (optional) The X and Y coordinates for the \`click\` action. Coordinates should be within the **1280x800** resolution.
2251
2251
* Example: <coordinate>450,300</coordinate>
2252
2252
- text: (optional) Use this for providing the text for the \`type\` action.
0 commit comments