Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 355 Bytes

File metadata and controls

13 lines (11 loc) · 355 Bytes

Profiling & Observability

Enable profiling via TaskRunnerConfig:

config = TaskRunnerConfig(
    profile_stages=True,   # per-stage timing
    profile_io=True,       # flush/load timing
    profile_usage=True,    # token counts (default: True)
    show_progress=True,    # progress bar
    dump_progress=True,    # save progress.json
)