Skip to content

Commit 51cacdb

Browse files
Increase timeout
1 parent 9633275 commit 51cacdb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/agentlab/agents/hitl_agent/generic_human_guided_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def get_action(self, obs):
251251
)
252252

253253
self.ui.update_context(hint_labeling_inputs)
254-
response = self.ui.wait_for_response(timeout=300)
254+
response = self.ui.wait_for_response(timeout=600)
255255

256256
if response["type"] == "reprompt":
257257
hint = response["payload"]["hint"]

src/agentlab/agents/hitl_agent/hitl_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def get_action(self, obs):
8282
)
8383

8484
self.ui.update_context(hint_labeling_inputs)
85-
response = self.ui.wait_for_response(timeout=300)
85+
response = self.ui.wait_for_response(timeout=600)
8686

8787
if response["type"] == "reprompt":
8888
hint = response["payload"]["hint"]

0 commit comments

Comments
 (0)