This repository contains the sampleproject for the Rasa Advanced Workshop on custom actions. It's a very hands-on workshop so to take the most out of it, we recommend following the instructions presetned in the workshop videos.
You can find a worked-out example in the branch called "completed-project".
To use this repository you will need:
- Docker
- Docker Hub account
- Python 3.7.x
- pip3
To set up your working environment:
- Create a directory for the workshop and change your working directory to it:
mkdir rasa-workshops
cd rasa-workshops
- Create a virtual environment
python3 -m venv ./venv
- Activate the environment:
source ./venv/bin/activate
- Clone the repository and navigate to the project directory:
git clone https://github.com/JustinaPetr/rasa-advanced-workshop-actions.git
cd rasa-advanced-workshop-actions
cd assistant
- Install the necessary dependencies:
pip install -r requirements.txt