(id: string)
| 242 | } |
| 243 | |
| 244 | async deleteBenchmark(id: string): Promise<void> { |
| 245 | await fetch(`${this.baseUrl}/eval/benchmarks/${id}`, { |
| 246 | method: 'DELETE', |
| 247 | }); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | // Export singleton instance |
no outgoing calls
no test coverage detected