Skip to main content
The Runs page shows all runs across your organization. You can also view runs for a specific pipeline from its detail page.

Exporting runs

Select one or more rows, then click Export to download the selected rows as CSV (requires the CSV export entitlement). This is useful for sharing a specific set of runs with a teammate or attaching them to a ticket.

Filtering runs

Use the status filters to narrow the list:
  • All: show all runs
  • Queued: waiting to start
  • Running: currently executing
  • Completed: finished successfully
  • Failed: encountered an error
  • Review: paused for human review
  • Cancelled: manually cancelled
  • Awaiting Sub-runs: waiting for child runs from document chunking to complete

Run detail

Click a run to view its details. The run detail page shows:

Step timeline

A visual timeline of each pipeline step and its status. Steps are shown in run order with timestamps. Each step in the navigator shows the node type, with the configured node name beneath it when the name differs from the type label. Use the Show skipped toggle in the navigator to show or hide steps that were skipped during this run. A step that executed inside a sub-run (for example, a Loop body node) shows an Open sub-run #N link in the output panel instead of an empty “Step is pending/failed” panel. The link deep-links to that child run. On a terminal run (Completed, Failed, or Cancelled), hovering a step in the navigator reveals a Re-run this step button (circular-arrow icon). Choosing it opens a confirmation (“Re-run this step and re-execute all downstream steps from this point. This may consume credits.”) and starts a new run from that point.

Step data

Click a step in the timeline to inspect:
  • Input: data received from the previous step
  • Output: data produced by this step
  • Errors: error details if the step failed
  • Timing: start time, end time, and duration
  • Credits: credits charged to this step
  • Skip reason: when a step was skipped, a brief explanation of why (for example, the step was bypassed by a route condition)
A Loop body step shows one array-shaped output that you page through per item with the Item pager in the Output header.

Reconcile preview

When a step is a Reconcile node, its Output / Preview tab shows a side-by-side comparison of Source A versus Source B with a summary header (for example, “Within tolerance” or a badge of N blocking mismatches alongside a warnings badge).
  • Compared header fields render as a Field/Values table.
  • Line-item rules render as a Line items table, with one row per matched line plus banners for rows present in only one source.
Blocking mismatches appear in red and warnings appear in amber. Each source value is tagged with a colored dot. Where a compared value is grounded to the document, the cell is clickable to highlight its box, and arrow keys move the selection.

Document viewer

For runs with extraction results, the document viewer renders the source document beside the extracted fields and supports:
  • Bounding box overlays: colored rectangles show where each field was found. When a value spans multiple lines, each line gets its own rectangle so the highlight tracks the actual text rather than a single bounding box that covers unrelated content.
  • Field info popovers: hover any bounding box to see the field name, the extracted value, and the confidence score.
  • Rotate: if a scan came in sideways or upside down, use the rotate control in the viewer toolbar to spin the page 90° at a time. The rotation is local to your view; the source document is not modified.

Test mode previews

When a pipeline runs in test mode, output nodes show previews instead of sending real outputs.
  • Callback steps show the resolved URL, request headers, and request body preview
  • Email steps show the recipients, subject, body preview, and attachment names
Test mode previews help you verify output configuration before you enable real outputs.

Copy run for an LLM

From a run detail page, open the command palette (Ctrl+K) and run Copy for LLM to copy the run as markdown. You can choose which sections to include:
  • Summary
  • Steps
  • Step inputs
  • Step outputs
  • Errors
Sections that are unavailable for the run are disabled. The copied markdown is meant to paste into an AI assistant. See Keyboard shortcuts for more on the command palette.

Callback Delivery History

If the pipeline includes a Callback output node, the run detail page shows a Callback Delivery History panel. A delivery outcome banner at the top summarizes the final attempt: a Delivered or Failed label, the final HTTP status code badge, the total attempt count, and the last attempt latency. Below the banner, the attempt list is ordered newest-first, with the latest attempt expanded by default. Each attempt row shows:
  • Attempt number
  • HTTP method
  • Status code
  • Latency
  • Relative timestamp: hover to see the absolute time
  • Target URL
  • Error message: shown if the attempt failed
Expanding an attempt reveals collapsible Request Payload, Request Headers, and Response Body panels, each rendered as read-only JSON. The panel shows an empty state when there are no attempts to display:
  • When the callback step failed before delivering, a Callback did not run banner shows the step error.
  • When the step completed but no delivery was needed, the panel shows “No delivery was needed.”
  • Otherwise, the panel shows “No callback delivery attempts yet.”
For a test-mode run, the panel shows the prepared-request preview (method, resolved URL, headers, and JSON body) instead of an attempt list.

Run actions

The actions menu on each run row offers:
  • Go to Pipeline: navigate to the parent pipeline
  • Download Output: download the captured payload as a JSON file. Only available when the run has a completed Download output step
  • Cancel Run: stop a run that is in flight (running or queued)

Testing from the editor

You can start a run directly from the pipeline editor.
  • Select a document from the run toolbar
  • Use documents in Uploaded, Completed, or Failed status
  • Choose Test mode for preview-only outputs or Real mode for live outputs

Pipeline timer

When viewing a run in the pipeline editor, a timer badge appears in the top-right corner of the canvas:
  • Running: a blue badge shows elapsed time, updating in real time
  • In review: an amber badge indicates the run is paused for human review
  • Completed: a green badge shows the total processing time
  • Failed: a red badge shows the time elapsed before the failure

Child runs

When a document is split into chunks, each chunk is processed as a separate child run. Child runs appear as expandable rows in the runs table: click the expand icon on a parent run to see its child runs inline. In the run detail view, use the sub-run navigator to page through sibling child runs without returning to the table. The navigator shows the current child run’s index and lets you step forward or backward through the set.

Real-time updates

Run status and step progress update in real time via SignalR. Both the runs list page and the run detail view receive push updates, so you see changes as they happen without refreshing the page.