| 9 | * Eval-defined reporters observe only the evals that reference them. |
| 10 | */ |
| 11 | export interface EvalReporter { |
| 12 | /** |
| 13 | * The runner calls this once before any eval executes, with the evals |
| 14 | * this reporter observes. |
| 15 | */ |
| 16 | onRunStart(evaluations: readonly EveEval[], target: EveEvalTarget): void | Promise<void>; |
| 17 | |
| 18 | /** |
| 19 | * The runner calls this after each observed eval completes, with its |
| 20 | * checks, scores, and verdict. |
| 21 | */ |
| 22 | onEvalComplete(result: EveEvalResult): void | Promise<void>; |
| 23 | |
| 24 | /** |
| 25 | * The runner calls this once when the run finishes, with the aggregated |
| 26 | * summary of the evals this reporter observes. |
| 27 | */ |
| 28 | onRunComplete(summary: EveEvalRunSummary): void | Promise<void>; |
| 29 | } |
no outgoing calls
no test coverage detected