Flows let you call another flow from inside your own. This can be useful for breaking up your WordApp into smaller,
composable parts, or for reusing common patterns across multiple WordApps. Flows also give you deeper control over
the context window, as the contents produced in intermediate steps of a subflow are not visible to the AI model of the
parent flow.
To create a flow, type /flow in the editor, and hit Enter. You’ll be prompted to select which flow you want to call
from your existing flows, and then to provide the inputs for that flow.
Flows output all the variables generated by the flow. These can be referenced in the parent flow using a
@mention with the name of the flow, followed by a dot and the name of the variable.