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 ce0b2d0 commit 024935eCopy full SHA for 024935e
experiments/run_osworld.py
@@ -13,15 +13,15 @@ def main():
13
n_jobs = 1
14
os.environ["AGENTLAB_DEBUG"] = "1"
15
study = make_study(
16
- benchmark=OsworldBenchmark(), # type: ignore
+ benchmark=OsworldBenchmark(test_set_name='test_small.json'), # type: ignore
17
agent_args=[OSWORLD_CLAUDE],
18
comment="osworld debug 1",
19
logging_level=logging.INFO,
20
logging_level_stdout=logging.INFO,
21
)
22
23
if os.environ.get("AGENTLAB_DEBUG"):
24
- study.exp_args_list = study.exp_args_list[:1]
+ study.exp_args_list = study.exp_args_list[-9:-8]
25
study.run(n_jobs=1, n_relaunch=1, parallel_backend="sequential")
26
else:
27
study.run(n_jobs=n_jobs, n_relaunch=1, parallel_backend="ray")
0 commit comments