I want my chatbot to review the session parameters it knows so far. However, some are optional. So while I can state most of them simply in the entry dialogue, some of them I would like to state only if they have been filled in already. After it has done so, I want to move on to the next page. My plan of doing this is as follows:
- Entry dialogue: "So far I know that
$session.params.something
and$session.params.something-else
". - Parameter:
$session.params.optional
, fulfillment: Agent says: "I also know that$session.params.something-optional
." - Conditional transition route:
true
. -> goes to next page.
However, I don't really know how I can tell the parameter to check for a previously filled in session parameter. Simply naming the parameter after the session parameter does not do the trick.