|
|
@@ -9,6 +9,7 @@ from opendevin.events.action import (
|
|
|
AgentFinishAction,
|
|
|
AgentRecallAction,
|
|
|
AgentRejectAction,
|
|
|
+ BrowseInteractiveAction,
|
|
|
BrowseURLAction,
|
|
|
CmdRunAction,
|
|
|
FileReadAction,
|
|
|
@@ -121,6 +122,14 @@ class DummyAgent(Agent):
|
|
|
# BrowserOutputObservation('<html></html>', url='https://google.com', screenshot=""),
|
|
|
],
|
|
|
},
|
|
|
+ {
|
|
|
+ 'action': BrowseInteractiveAction(
|
|
|
+ browser_actions='goto("https://google.com")'
|
|
|
+ ),
|
|
|
+ 'observations': [
|
|
|
+ # BrowserOutputObservation('<html></html>', url='https://google.com', screenshot=""),
|
|
|
+ ],
|
|
|
+ },
|
|
|
{
|
|
|
'action': AgentFinishAction(),
|
|
|
'observations': [],
|