(call: ParsedApiCall)
| 20 | } |
| 21 | |
| 22 | function modelKey(call: ParsedApiCall): string { |
| 23 | return call.provider === 'devin' ? call.model : getShortModelName(call.model) |
| 24 | } |
| 25 | |
| 26 | export function aggregateModelEfficiency(projects: ProjectSummary[]): Map<string, ModelEfficiency> { |
| 27 | const byModel = new Map<string, MutableModelEfficiency>() |
no test coverage detected