Kind: Type
Source: atloria-monorepo/libs/agent-core/src/benchmark/types.ts
Typed events emitted by BenchmarkRunner for monitoring.
Definition
ts| { type: 'run_start'; totalTasks: number; suite: string; model: string }
| { type: 'task_start'; taskId: string; difficulty?: string; index: number; total: number }
| { type: 'tool_call'; taskId: string; toolName: string; inputPreview: string }
| { type: 'tool_result'; taskId: string…
Was this page helpful?