live_run_step_range
Executes a contiguous range of steps from a saved flow as a live tracked run, re-verifying only the specified steps with seeded context from dataset/params.
Instructions
Runs a contiguous [from, to] slice of an already-SAVED flow's own top-level steps live, as a real tracked Run (shows up in the Runs tab with live per-step status dots, same as live_replay_flow/live_start_run) -- for re-verifying just the steps you just added/changed instead of a full live_replay_flow from step 0 every time. Context is seeded the same way a fresh replay's first iteration would be (the chosen dataset/params -- or the flow's own first/default dataset if neither is given -- plus state-var defaults), since a mid-flow slice has no prior-steps history to inherit values from otherwise: if the steps in range reference a param/state-var, pass a dataset (or params) that actually defines it, or the slice will see it as undefined even though a full replay from step 0 would have set it correctly by this point. results has one entry per step actually attempted (stops at the first failure, same as a full replay) with its 0-based index in the flow's own step list. Blocks until the slice finishes (or fails) and moves from the Runs tab's current list to its history, same as live_replay_flow. Requires the side panel open and connected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Last step index to run (0-based, inclusive) | |
| from | Yes | First step index to run (0-based, inclusive) | |
| flowId | Yes | ||
| params | No | ||
| dataset | No | Name of an existing flow-data dataset to use as the base params | |
| project | No | Path to the project root (same folder the side panel connects to). Defaults to the EASYSPEC_PROJECT environment variable if omitted. | |
| session | No | Which connected side panel to target, by its connection id (see live_status) -- only needed when more than one side panel is connected to the same project. |