run_pipeline
Start a pipeline run with your inputs and parameters, get a run ID to track progress, then fetch results and provenance when complete.
Instructions
Start a pipeline run and return a run_id to track it. Provide inputs (a map of input name to file path or value) and params (a map of parameter name to value), as described by describe_pipeline. The run executes asynchronously; poll get_run_status, then fetch get_results and get_provenance when it completes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inputs | No | Map of input name to file path or value, per describe_pipeline. | |
| params | No | Map of parameter name to value, per describe_pipeline. | |
| pipeline_id | Yes | The pipeline id to run, from list_pipelines. |