Forms
Forms
Note
There is an in-depth tutorial here about how to use Rasa Forms for slot filling.
Configuration File
To use forms, you also need to include the FormPolicy in your policy configuration file. For example:
policies:
- name: "FormPolicy"
Form Basics
Using a FormAction, you can describe all of the happy paths with a single story. By “happy path”, we mean that whenever you ask a user for some information, they respond with the information you asked for.
## happy path
* request_restaurant
- restaurant_form
- form{"name": "restaurant_form"}
- form{"name": null}
Custom slot mappings
If you do not define slot mappings, slots will be only filled by entities with the same name as the slot that are picked up from the user input. Here’s an example for the restaurant bot:
def slot_mappings(self) -> Dict[Text, Union[Dict, List[Dict]]]:
return {
"cuisine": self.from_entity(entity="cuisine", not_intent="chitchat"),
"num_people": [
self.from_entity(
entity="number", intent=["inform", "request_restaurant"]
),
],
}
Validating user input
After extracting a slot value from user input, the form will try to validate the value of the slot.
def validate_cuisine(self, value: Text, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict[Text, Any]) -> Dict[Text, Any]:
if value.lower() in self.cuisine_db():
return {"cuisine": value}
else:
dispatcher.utter_message(template="utter_wrong_cuisine")
return {"cuisine": None}
Handling unhappy paths
A form will raise an ActionExecutionRejection if the user didn’t provide the requested information. You need to handle events that might cause ActionExecutionRejection errors in your stories. For example:
## chitchat
* request_restaurant
- restaurant_form
- form{"name": "restaurant_form"}
* chitchat
- utter_chitchat
- restaurant_form
- form{"name": null}
The requested_slot slot
The slot requested_slot is automatically added to the domain as an unfeaturized slot.
## explain cuisine slot
* request_restaurant
- restaurant_form
- form{"name": "restaurant_form"}
- slot{"requested_slot": "cuisine"}
Handling conditional slot logic
You can achieve this by writing some logic into the required_slots() method:
@staticmethod
def required_slots(tracker) -> List[Text]:
if tracker.get_slot('cuisine') == 'greek':
return ["cuisine", "num_people", "outdoor_seating", "preferences", "feedback"]
else:
return ["cuisine", "num_people", "preferences", "feedback"]
Debugging
The first thing to try is to run your bot with the --debug flag.