I have the following slot:
drinks_count:
- entity: drink_type
intent: track_count
type: from_entity
- entity: drink_count
intent: track_count
type: from_entity
And I would like to map these two entities to it. So if I detect an entity called drink_count or drink_type, I want to be mapped to “drinks_count” slot.
With this current setup just the first entity from the declaration above is mapped, the second entity is skipped. Is there any way to achieve this?
Thanks