Repeat a run
Userun.repeat(n) to execute the same run configuration multiple times.
n is the total number of runs, including the base run.
all_runs contains 5 total runs, not 5 additional runs.
Each repeated run:
- Reuses the same task
- Shares the same backend eval id context
- Can inherit evaluation plans
Run-level metrics over repeated runs
all_runs, not over rows from a single run.
Resume interrupted runs
Resume from an existing run and skip already completed rows:dataset.eval(...) calls.
Resume modes
- auto
- force
- fresh
Attempt resume when possible. Safe default for most workflows.
Requirements for skip-completed
Whenskip_completed=True, each row needs stable identity (row_id or id) so the SDK can detect already-finished rows.