(key: keyof AgentBenchmarkResult)
| 802 | } |
| 803 | |
| 804 | const sum = (key: keyof AgentBenchmarkResult) => |
| 805 | results.reduce((acc, r) => acc + (r[key] as number), 0); |
| 806 | |
| 807 | const totalToolUsage: Record<string, number> = {}; |
| 808 | for (const result of results) { |
no outgoing calls
no test coverage detected