In my Watson Assistant app, I want to capture the multiple entities in the context and also have a slot to ask a question to user. Here is an example:
- User: I want to fly from Toronto to Boston
And the Watson correctly detects:
intent: 'booking', @city:'Toronto', @city:'Boston'
Now I have a slot which asks for booking class:
- Watson(Slot): Which class would you like?
- User: Economy
At this point, the context only have first value for the @city entity i.e. Toronto. I understand from my googling that I can access @city[0] and @city1. And I tried to capture it in the context by doing the following but the value I'm getting is None.
How can I correctly capture both cities @city:Toronto, @city:Boston and at the same time entity @class:economy ?