Thomas Lau • almost 9 years ago
Multi slot in single turn of conversation.
AWS Lex supports single slot recognition in single turn of conversation by default.
Can AWS Lex support multiple slots in single turn of conversation?
e.g. May I reserve {single room} of {ABC hotel} from {2017-06-01} to {2017-06-03}?
Comments are closed.

2 comments
Robin Smith-Gilbert • almost 9 years ago
Yes, you should be able to do that if you have the proper slot names configured (i.e. roomType, hotelName, fromDate, toDate). It would look like this:
May I reserve {typeRoom} of {hotelName} from {fromDate} to {toDate}
typeRoom might be defined as single, double, king
hotelName would have your list of hotels
fromDate and toDate would be AMAZON.DATE slots.
Thomas Lau • almost 9 years ago
Thank you, Robin.
Your answer is helpful and I can make it now.