buildWorkflowDescription creates a description string for a workflow
(inputs map[string]*workflow.InputDefinition)
| 163 | |
| 164 | // buildWorkflowDescription creates a description string for a workflow |
| 165 | func buildWorkflowDescription(inputs map[string]*workflow.InputDefinition) string { |
| 166 | // Always return empty string to avoid showing input counts |
| 167 | return "" |
| 168 | } |
| 169 | |
| 170 | // selectWorkflow displays an interactive list for workflow selection with fuzzy search |
| 171 | func selectWorkflow(ctx context.Context, workflows []WorkflowOption) (*WorkflowOption, error) { |
no outgoing calls