(i: int)
| 757 | return r |
| 758 | |
| 759 | def _task(i: int): |
| 760 | if i in checkpoints: |
| 761 | return _checkpointed(i) |
| 762 | return _run_once(i, target, args.model, args.find_only, args.max_turns, agent_env, |
| 763 | out_dirs[i], _assigned_focus(i, focus_areas), found_bugs_path, |
| 764 | stream_ctx, accept_dos=args.accept_dos, system_prompt=system_prompt) |
| 765 | |
| 766 | if args.parallel: |
| 767 | n_live = args.runs - len(checkpoints) |
no test coverage detected