Hi
I’m working on a conversational flow which involves taking some details from the user and returning confirmations as part of additional questions ( to show understanding of user intent) till the bot has enough input to carry out the user request. For example:
Bot: Where would you like to go?
User: Denver (or Frankfurt)
Bot: You’re flying to Denver, Colorado, USA. When do you want to go? (Or: You’re flying to Frankfurt, Germany. Where are you flying from?)
I understand the concept of Attributes and how to store user inputs in them. But I’m struggling to show understanding of the user’s intended destination/departure city by returning it as City, State, Country, or City, Country. This is important because London, could mean United Kingdom or Kenturky, and Norfolk could mean Virginia or United Kingdom. I’m not sure I clearly understand how to do this and the tools available for putting it together. Or is that what Webhook, HTTP Request, and Code are for?
Any ideas?