(approach: string)
| 394 | }, |
| 395 | |
| 396 | getResult(approach: string): BenchmarkResult { |
| 397 | return { |
| 398 | approach, |
| 399 | totalInputTokens, |
| 400 | totalOutputTokens, |
| 401 | totalTokens: totalInputTokens + totalOutputTokens, |
| 402 | imageTokens: imageTokensTotal, |
| 403 | screenshotsTaken: screenshotCount, |
| 404 | toolCallCount: toolCallCount > 0 ? toolCallCount : undefined, |
| 405 | }; |
| 406 | }, |
| 407 | }; |
| 408 | } |
| 409 |
nothing calls this directly
no outgoing calls
no test coverage detected