Spaces:
Paused
Paused
File size: 960 Bytes
7d4338a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ### browser_agent:
subordinate agent controls playwright browser
message argument talks to agent give clear instructions credentials task based
reset argument spawns new agent
do not reset if iterating
be precise descriptive like: open google login and end task, log in using ... and end task
when following up start: considering open pages
dont use phrase wait for instructions use end task
downloads default in /a0/tmp/downloads
pass secrets and variables in message when needed
usage:
```json
{
"thoughts": ["I need to log in to..."],
"headline": "Opening new browser session for login",
"tool_name": "browser_agent",
"tool_args": {
"message": "Open and log me into...",
"reset": "true"
}
}
```
```json
{
"thoughts": ["I need to log in to..."],
"headline": "Continuing with existing browser session",
"tool_name": "browser_agent",
"tool_args": {
"message": "Considering open pages, click...",
"reset": "false"
}
}
```
|