File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 33import pickle
44import re
55import uuid
6+ from abc import ABC , abstractmethod
67from dataclasses import dataclass
78from datetime import datetime
89from pathlib import Path
1617from agentlab .experiments import args
1718from agentlab .experiments import reproducibility_util as repro
1819from agentlab .experiments .exp_utils import RESULTS_DIR , add_dependencies
19- from agentlab .experiments .launch_exp import (
20- find_incomplete ,
21- non_dummy_count ,
22- run_experiments ,
23- )
20+ from agentlab .experiments .launch_exp import find_incomplete , non_dummy_count , run_experiments
2421
2522logger = logging .getLogger (__name__ )
2623
@@ -353,7 +350,7 @@ def _agents_on_benchmark(
353350 The logging level for individual jobs.
354351
355352 Returns:
356- study: Study
353+ list[ExpArgs]: The list of experiments to run.
357354 """
358355
359356 if not isinstance (agents , (list , tuple )):
You can’t perform that action at this time.
0 commit comments