How to recognize a returning bot user
Last updated
Was this helpful?
Last updated
Was this helpful?
A good bot can make users feel they're talking to a real 'artificial intelligence', with a distinct personality. However, when it starts the next conversation as if you've never met before, the illusion is gone.
Chatlayer.ai enables you to treat returning users differently, using saved variables from previous sessions.
Every conversation starts with the introduction dialog:
By default, this is a Bot message
:
However, instead of greeting the user right away, we can first check whether the bot has talked to him before by converting the introduction into a Go to
:
Using a variable 'known_user_flag' (feel free to rename in line with your naming conventions), the bot can check whether it has talked to the user before, and redirect to the right dialogs accordingly.
Build an If-statement as follows:
If 'known_user_flag' is equal to 1, we know for certain that there has been a conversation before - else the variable would be empty - so the user can be directed to an introduction dialog appropriate for returning users.
Else, if 'known_user_flag' is not defined, the user must be new, and can be redirected to an introduction for new users. At the same time, you can already set the 'known_user_flag' to 1, as the user is not new anymore. Alternatively, you can only change this value later on in the conversation, but changing it here is the most simple option.
Simply having a modified introduction for returning users is already of great value:
However, you can really take the bot to the next level by also using other saved variables from previous encounters.
For example, the Choo-choo bot can use previous 'origin' and 'destination' values to suggest a new journey.
You'll first want to check whether any values have been saved:
...and if so, direct to a dialog using these variables:
Used this way, saved variables can provide returning users are more personalized and efficient experience!