()
| 220 | |
| 221 | // Benchmarks |
| 222 | async getBenchmarks(): Promise<BenchmarkListResult> { |
| 223 | return this.fetch<BenchmarkListResult>('/eval/benchmarks'); |
| 224 | } |
| 225 | |
| 226 | async getBenchmark(id: string): Promise<BenchmarkRecord> { |
| 227 | return this.fetch<BenchmarkRecord>(`/eval/benchmarks/${id}`); |