Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
koaning committed Sep 1, 2020
1 parent 0dca19f commit d3be790
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@ and we're recording the milestones. You can watch the videos describing how this

This project is a community project and there are many ways you can contribute.

- **Give feedback.** If you play with the assistant locally and you notice that there are features missing we'd love to hear it.
- **Add data.** If you think that there's data missing for some of our intents you're free to create a PR.
- **Give feedback.** If you play with the assistant and notice that there are features missing we'd love to hear it.
- **Add data.** If you think that there's data missing for some intents you're free to create a PR.
- **Think along.** There are tricky parts to making a proper adventure game in Rasa and we're still learning as we go.
Feel free to join some of the discussions in the issues to think along.
- **Report bugs.** If you feel like some of the commands make no sense, feel free to let us know!

## Start Locally

If you want to play around with this game locally you can clone this repository and install Rasa.
If you want to play around with this game locally you can clone this repository and setup Rasa.

```
git clone git@github.com:RasaHQ/breakoutbot.git
pip install rasa
pip install rasa==1.10
rasa train
```

Once you've done this, you should be able to play the game via the shell.
Once you've done this, you should be able to play the game.

```python
rasa shell
```

8 changes: 2 additions & 6 deletions domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,9 @@ slots:

responses:
utter_greet:
- text: Hey! Welcome to the breakoutbot adventure!
You are in a room and it is your goal to escape from it. There seem to be three things in the room: a window, a box and a door.
You can try to interact with these items and you can combine/pickup/use them try to escape. Everything is text based. Good luck!
- text: "Hey! Welcome to the breakoutbot adventure! You are in a room and it is your goal to escape from it. There seem to be three things in the room: a window, a box and a door. You can try to interact with these items and you can combine/pickup/use them try to escape. Everything is text based. Good luck!"
utter_help:
- text: This is a text based adventure game.
The goal is to escape from the room but you can try to look around the room to find items that might help you escape.
You can try to `look` and items, you might be able to `pick up` items and you can try to `use` items on other objects.
- text: "This is a text based adventure game. The goal is to escape from the room but you can try to look around the room to find items that might help you escape. You can try to `look` and items, you might be able to `pick up` items and you can try to `use` items on other objects."

session_config:
session_expiration_time: 60
Expand Down

0 comments on commit d3be790

Please sign in to comment.