Hi all,
I was trying to create a form based chat, by following the tutorial Tutorial: Building Assistants
I Have two slots ( mapped to two entities) in the form which may take same value in one case.
For e.g.: One slot accept type of coffee ( entity coffee) which can take value cappuccino, latte, etc… and ’anything’ incase, the user does not ave any preference.
Same case goes with another slot (entity sugar) which accept type of sugar brown, white, powder and anything incase, the user does not ave any preference.
So I have to match value ‘anything’ to coffee and sugar entities.
Is this possible?
I tried it with ‘CRFEntityExtractor’ but it was recognising ‘anything’ only as coffee.
Any suggestion is welcome .
## intent:coffeeform
- [cappucino](coffee)
- [latte](coffee)
- [cold coffee](coffee)
- [cafe americano](coffee)
- [anything](coffee)
- [brown cube](sugar)
- [white cube](sugar)
- [powder](sugar)
- [anything](sugar)