User: I want to buy a car
Bot: What car would you like to buy (Sedan or SUV)
User: Honda
Bot: Thank you for choosing {carname}
slots:
carname:
type: text
mappings:
- type: from_entity
entity: car_type
How can I validate the car type other than SUV or Sedan. if the user input is Honda then I want to re-prompt and say “Please select a valid option to set the car type”. Here I am looking a solution without form validation is it possible in RASA.
I am referring documentation but not sure how to implement Slot Validation Actions
Please help me.