registry.RunInfo

registry.RunInfo(
    run_id,
    run_hash,
    replicate,
    started_at,
    completed_at,
    exit_code,
    output_path,
    error_message,
    metadata,
)

Information about a job run.

Attributes

Name Type Description
run_id str Unique run identifier.
run_hash str Run hash for this run.
replicate int Replicate number (0-indexed).
started_at datetime | None When the run started.
completed_at datetime | None When the run completed.
exit_code int | None Process exit code (0 = success).
output_path str | None Path to output files.
error_message str | None Error message if run failed.
metadata dict[str, Any] | None Additional metadata.