Hey all, welcome to the Getting Started with Rasa Workshop with PyLadies Hamburg. Below is a step-by-step guide on the workshop activities. Have fun! If you wish to follow along, this is the link to the slides.
- Go to Rasa playground here, it is an interactive shell you can play with on the browser. On the page, you could see there is a pre-built subscription bot. Press
Train
and talk with the bot! We will refine it by adding more NLU data to the subscription bot on the page.
- On Rasa playground here, we will add an intent called
bot_challenge
. We will do that by adding the intent and some examples inNLU data
, then we will add a responseutter_bot_challenge
under theResponses
tab. And then add this step to theStories
tab. Now it's your turn to add another intent!
- On the same page here, press
train
if you haven't yet, then you'll see that the greyed outDownload project
button becomes purple, save the project to your machine. - Navigate to the directory with your subscription bot project, then follow the step-by-step installation guide. The guide uses
venv
to set up your virtual environment, if you're more used toconda
you can follow the instructions below to replacestep 2
.
conda create -n rasaenv
# the environment should be activated now
# if not, type: source activate rasaenv
If you're getting errors, updating conda might help, run: conda update -n base -c defaults conda
After installing rasa
, you could use that to add intents, entities and stories in a much easier way! Have fun.