Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mainly.ai/llms.txt

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

RunUntilButton(label="Run Until this Node")

Example

from mirmod.controls import RunUntilButton

@wob.receiver("state", "run", control=RunUntilButton(label="Execute to Here"), hidden=False, connectable=False)
def run_until(self, data):
	pass
This control allows users to run the graph until the node is reached. It’s useful for creating nodes that update their attributes based on their inputs during partial execution.

Parameters

NameTypeDescription
labelstringThe text displayed on the button. Default “Run Until this Node”.