MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / task_output_dir

Function task_output_dir

src/harness/paths.py:48–54  ·  view source on GitHub ↗

Host-side output directory for a named task/run. Does *not* include a timestamp; use :func:`new_run_dir` for fresh runs and :func:`find_latest_run_dir` for resume.

(task_name: str)

Source from the content-addressed store, hash-verified

46
47
48def task_output_dir(task_name: str) -> Path:
49 """Host-side output directory for a named task/run.
50
51 Does *not* include a timestamp; use :func:`new_run_dir` for fresh runs and
52 :func:`find_latest_run_dir` for resume.
53 """
54 return outputs_root() / task_name
55
56
57def new_run_dir(task_name: str, timestamp: Optional[str] = None) -> Path:

Callers

nothing calls this directly

Calls 1

outputs_rootFunction · 0.85

Tested by

no test coverage detected