We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49147bf commit 9856e76Copy full SHA for 9856e76
agenthub/dummy_agent/agent.py
@@ -9,6 +9,7 @@
9
AgentFinishAction,
10
AgentRecallAction,
11
AgentRejectAction,
12
+ BrowseInteractiveAction,
13
BrowseURLAction,
14
CmdRunAction,
15
FileReadAction,
@@ -121,6 +122,14 @@ def __init__(self, llm: LLM):
121
122
# BrowserOutputObservation('<html></html>', url='https://google.com', screenshot=""),
123
],
124
},
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
+ },
133
{
134
'action': AgentFinishAction(),
135
'observations': [],
0 commit comments