Skip to main content

Documentation Index

Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt

Use this file to discover all available pages before exploring further.

Selector

Random Select

Picks one option uniformly at random from a list each time the node runs.

Round Robin

Returns the next option in order on each run—cycles through the list. Often paired with stored state for fair rotation.

Balanced Select

Chooses the option with the lowest current count so counts stay even over time. Can manage counters internally or accept manual balance inputs depending on configuration.