
- Transition: This is the core card for controlling the conversation’s flow. It allows you to transition (or move) from the current node to another node based on a specific condition.
- Condition: This is a required field where you define the rule that must be true for the transition to happen. The condition is a simple boolean expression.
- Example:
- A condition of
Truecreates an unconditional transition, meaning the conversation will always move to the next connected node. - A condition could also check a variable, such as
user_input == "yes", to move the conversation to a new node only if the user said “yes.”
- A condition of
- Example:
- Condition: This is a required field where you define the rule that must be true for the transition to happen. The condition is a simple boolean expression.