How to handle story for categorical slots if somehow rasa parse incorrect value of the entity. For example in below snippet if rasa found value yellow for colour slot how to handle that?
intents:
- which_is_your_color
slots: colour: type: categorical values: - tech - care - sales
##Story1 nlu identify intent which_is_your_color but no entity extracted
- which_is_your_color
- utter_which_color
##Story2 nlu identify intent which_is_your_color and extracted entity color with value red
- which_is_your_color{“colour:” : “red”}
- utter_red_color
##Story2 nlu identify intent which_is_your_color and extracted entity color with value black
- which_is_your_color{“colour:” : “black”}
- utter_black_color