| 33 | } |
| 34 | |
| 35 | interface WorkflowInputDefinition { |
| 36 | description: string; |
| 37 | type: string; |
| 38 | default: boolean; |
| 39 | } |
| 40 | |
| 41 | // Build mapping from input IDs to agent:model combinations by reading workflow file |
| 42 | function buildInputMapping(): Map<string, { agent: string; model: string }> { |
nothing calls this directly
no outgoing calls
no test coverage detected