Trying to build a PoC that allows a user to ask something such as "I want a small pizza with a drink". Since drink didn't have a size, I would then prompt for the desired drink size.
Going with the restaurant example, should sizes (small, medium, large) be individual entities (e.g. @small, @medium, @large)? Does it matter that these entities would be used for both pizza size and drink size, or should we have a @pizza_small, @pizza_medium, @drink_small, @drink_medium, etc. entity? With this, I may need a @drink_no_size so I would know that I need to prompt for a size.
Thanks!