Transition

A Transition is like a "decision point" in a conversation with a chatbot, where the bot has to decide what to do next based on what the user has said or done. It's like a set of instructions that the bot follows to determine which "path" to take in the conversation.

The transition statement is what tells the bot which response or question to provide based on what the user has said or done.


Expression

An Expression transition is a conditional statement that tells the bot which node should be processed next if the condition is met. It uses generative AI to generate the conditions using plain text.

This type of transition allows you to check user input, user variables, workflow variables, and even create advanced JavaScript expressions to determine which node the bot should transition to next.

You can use a combination of these checks to create complex conditions that will determine which node the bot will transition to next.

📘

Generative AI Transitions

You can use generative AI to generate your conditions using plain text. In order to achieve what you exactly want, here are some examples that should guide you, but you are not limited to it:


Always transition to another node

There are two ways to make sure that a transition always triggers:

The recommended approach is to click and drag starting from the circle on the bottom-right of nodes, next to the "Add Card" button. Transitions created this way always trigger when the user reaches the end of the node.

You can also add an Expression card by creating an Expression Transition with the label "Always" and by pressing Enter. The code generator will insert true in the expression input. Anything below this Transition in the Node will never run.


Intent

An Intent transition allows you to create an inline intent (or node-specific intent). Only if this intent is elected will the condition be met.

This type of transition is useful when you want to create a specific response for a particular intent. You can create an
intent for a specific node, and the bot will transition to that node only if that intent is detected in the user's message.

For example, if a user says "I want to book a hotel room," the bot can transition to a node that is specific to handling
hotel room bookings.