Debug your bot
In the Debugger you can find the following information:
User says
the input the user has given
Intent
the recognized intent
Contexts
if any contexts are active and what the lifespan is
Bot dialog
with the id and name of the current block
Read-Only Session data
This is all data that is retrieved up until this point in the session. If you need to use any of these variables, it is important that you add internal.
before the variable. For example internal.channel
If there are any variables collected in the conversation along the way, they will be listed at the bottom. If you want to use these, internal.
is not necessary
If you need to use any of the variables with a { }
behind it, remember to use the correct variable name when you open the variable. For example internal.currentDialogstate.name
Below Messages
(on the right side) you can see all the messages the bot has given up until that point.
NLP Result
The NLP section shows the result of the NLP engine. Any recognized intents or entities are shown here
This information helps locating intent issues - if a wrong response is given in the bot, you can check here which intent was triggered.
Last updated