(agent: string, model: string)
| 28 | |
| 29 | // Convert agent:model to display description |
| 30 | function toDescription(agent: string, model: string): string { |
| 31 | return `${agent}:${model}`; |
| 32 | } |
| 33 | |
| 34 | async function main(): Promise<void> { |
| 35 | const workflowPath = ".github/workflows/compare-models.yml"; |