(agent: string, model: string)
| 23 | |
| 24 | // Convert agent:model to workflow input ID |
| 25 | function toInputId(agent: string, model: string): string { |
| 26 | return `${agent}_${model}`.replace(/\//g, "_").replace(/-/g, "_"); |
| 27 | } |
| 28 | |
| 29 | // Convert agent:model to display description |
| 30 | function toDescription(agent: string, model: string): string { |