SegmindSegmind / Docs

The Editor

Tour the PixelFlow editor: the canvas, minimap, model search, asset gallery, logs panel, node configuration, run controls, auto-save, and undo/redo.

Everything in PixelFlow happens in the editor — the canvas where you assemble, run, and debug workflows.

platform.segmind.com/pixelflow
The PixelFlow editor with the canvas, sidebar, and run controls labeled
The PixelFlow editor

The canvas

The canvas is an infinite surface for your graph. Drag to pan, scroll to zoom, and use the minimap in the corner to jump around large workflows. Nodes can be dragged anywhere; edges re-route automatically.

Video coming soon

Pan, zoom, and minimap navigation

https://segmind-resources.s3.amazonaws.com/docs/pixelflow/editor/canvas-navigation.mp4

The sidebar

The sidebar is your toolbox:

  • Add nodes — quick-add buttons for Input, Model, Output, Notes, and Utility nodes.
  • Model search — search Segmind's full model catalog by name and add any model to the canvas.
  • Asset gallery — every image, video, and audio file you've uploaded or generated, ready to reuse as inputs across workflows.
  • Logs — a live stream of execution events for debugging runs.

Configuring nodes

Selecting a model node opens its parameter form, generated from the model's schema — prompts, dimensions, seeds, guidance, and whatever else the model accepts. Fields can hold literal values or take their value from an incoming connection.

You can also reference upstream node outputs inside text fields with template expressions like {{ input_1 }} or {{ model_1.images[0] }} — useful for composing prompts from multiple sources.

Every node has an action bar (copy, delete, add a note) and an editable title. Model nodes display an estimated cost per run so you know what a run will consume before you start it.

Running workflows

There are two ways to run:

  • Run workflow executes the entire graph in dependency order.
  • Run node (right-click a node) executes just that node and the upstream nodes it needs — ideal for testing one step without paying for the whole pipeline.

Node status is shown live: idle, in‑progress, success, or error, with execution times per node and a progress bar for the run. Use the logs panel to inspect what happened, and the stop button to abort a run in progress.

Video coming soon

Running a single node executes only its upstream dependencies

https://segmind-resources.s3.amazonaws.com/docs/pixelflow/editor/run-single-node.mp4

Iterating on one part of a workflow? Pin finished nodes so re-runs skip them and reuse their cached output.

Auto-save and version conflicts

Workflows save automatically as you edit — there's no save button. If the same workflow is edited from two places at once (two tabs, or a teammate via sharing), PixelFlow detects the conflict and asks you to reload rather than silently overwriting changes.

Screenshot coming soon

Conflicting edits are detected, never silently overwritten

/images/pixelflow/editor/version-conflict-modal.webp

Undo and redo

Standard undo/redo applies to graph edits — adding, moving, connecting, and deleting nodes — so you can experiment freely.

Next steps

On this page