Learning by doing – building a ticket and drink booking bot
We have designed this section to enhance your practical understanding. We will create a ticket and drink booking bot based on a homemade toy-level dataset. The robot can simulate the process of booking tickets and drinks for travelers (they will not actually book tickets or drinks).
What are the features of our bot?
By using a combination of entity roles and slot mapping in the form, we can map city entities into departure and destination slots. In this way, the user's request can be successfully processed.
By using entity groups, our bot system can easily group entities into subtasks, which will make it possible to process them.
How can we implement it?
Let's follow the official Rasa project structure:
. ├── actions │ └── actions.py ├── config.yml ├── credentials.yml ├─...