I have an intent in LUIS called ChangeFlight. I can extract the date entity when user input some kind of date format initially. When the user forgets to input some date, it will ask the user to input a date.
However, I don't want to just get the results of the response, instead, I want it to extract the date entity such as the initial step. I have bot.dialog('askForDate') which asks for date from user but I am not sure how to extract the builtin date entity in the middle of the conversation.
How should I handle this? Thanks.
Prompts.time
works, the SDK uses chrono. If users' datetimes are still not being properly parsed then you may want to plug in a NLP like LUIS.ai to aid in deciphering utterances. – Steven G.