File tree Expand file tree Collapse file tree 3 files changed +3
-12
lines changed
Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Original file line number Diff line number Diff line change 1515logger = logging .getLogger (__name__ )
1616
1717
18- from eval_protocol .evaluation import create_evaluation , preview_evaluation
19-
2018from .cli_commands .agent_eval_cmd import agent_eval_command
21- from .cli_commands .common import (
22- check_agent_environment ,
23- check_environment ,
24- setup_logging ,
25- )
19+ from .cli_commands .common import setup_logging
2620from .cli_commands .deploy import deploy_command
2721from .cli_commands .deploy_mcp import deploy_mcp_command
2822from .cli_commands .logs import logs_command
Original file line number Diff line number Diff line change @@ -27,11 +27,7 @@ def dummy_dump(x, **kwargs):
2727import os # For environment variables
2828from pathlib import Path
2929
30- from pydantic import ValidationError
31-
32- from eval_protocol .agent import Orchestrator
3330from eval_protocol .agent .task_manager import TaskManager
34- from eval_protocol .models import TaskDefinitionModel # Import the new Pydantic model
3531
3632# setup_logging is already called in cli.py's main, but good for standalone use if any
3733# from .common import setup_logging
Original file line number Diff line number Diff line change 1717 OmegaConf ,
1818)
1919
20- from eval_protocol .execution .pipeline import EvaluationPipeline
2120
2221logger = logging .getLogger (__name__ )
2322
@@ -26,6 +25,8 @@ def run_evaluation_command_logic(cfg: DictConfig) -> None:
2625 """
2726 Main logic for the 'run-evaluation' command.
2827 """
28+ from eval_protocol .execution .pipeline import EvaluationPipeline
29+
2930 logger .info ("Starting 'run-evaluation' command with resolved Hydra config." )
3031
3132 # Make Hydra's runtime output directory available to the pipeline if needed
You can’t perform that action at this time.
0 commit comments