| """HYDRA harness package: orchestration infrastructure for autoresearch.""" | |
| from harness.eval_agent import ExperimentResult, parse_run_log, should_keep | |
| from harness.git_utils import current_branch, current_commit_short | |
| from harness.health_monitor import check_health, get_gpu_stats | |
| from harness.meta_agent import run_meta_iteration | |
| from harness.orchestrator import run_loop | |
| from harness.search_strategy import ResearchState, diagnose | |
| __all__ = [ | |
| "run_loop", | |
| "parse_run_log", | |
| "ExperimentResult", | |
| "should_keep", | |
| "run_meta_iteration", | |
| "diagnose", | |
| "ResearchState", | |
| "check_health", | |
| "get_gpu_stats", | |
| "current_branch", | |
| "current_commit_short", | |
| ] | |