Microsoft Bot Framework LUIS in waterfall conversation
I have an existing waterfall conversation. I want to adapt it so that it can extract data from more complex user responses to the bot's questions. In my LUIS app I have created an intent called GetLocation which is trained to find an entity called Location . An example of this is the user typing "I am looking in Bristol" which would match the entity "Bristol". This is what I currently have: function(session) { builder.Prompts.text(session, "Hello... Which city are you looking in?"); }, function(session, results) { session.privateConversationData.city = results.response; builder.Prompts.number