Skip to content

Commit 9856e76

Browse files
authored
add BrowseInteractiveAction in dummy agent (All-Hands-AI#1852)
1 parent 49147bf commit 9856e76

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

agenthub/dummy_agent/agent.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
AgentFinishAction,
1010
AgentRecallAction,
1111
AgentRejectAction,
12+
BrowseInteractiveAction,
1213
BrowseURLAction,
1314
CmdRunAction,
1415
FileReadAction,
@@ -121,6 +122,14 @@ def __init__(self, llm: LLM):
121122
# BrowserOutputObservation('<html></html>', url='https://google.com', screenshot=""),
122123
],
123124
},
125+
{
126+
'action': BrowseInteractiveAction(
127+
browser_actions='goto("https://google.com")'
128+
),
129+
'observations': [
130+
# BrowserOutputObservation('<html></html>', url='https://google.com', screenshot=""),
131+
],
132+
},
124133
{
125134
'action': AgentFinishAction(),
126135
'observations': [],

0 commit comments

Comments
 (0)