You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: chatterbot/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
-
# Build a Chatbot with Python and Chatterbot
1
+
# Build a Chatbot with Python and ChatterBot
2
2
3
-
This repository contains code related to the tutorial on [building a Python chatbot with chatterbot](https://realpython.com/build-a-chatbot-python-chatterbot/).
3
+
This repository contains code related to the tutorial on [building a Python chatbot with ChatterBot](https://realpython.com/build-a-chatbot-python-chatterbot/).
4
4
5
5
Create and activate a [virtual environment](https://realpython.com/python-virtual-environments-a-primer/), then install the necessary dependencies:
Then you can train and start the interactive CLI bot by running `bot.py`:
13
+
Then you can train and start the interactive command-line interface chatbot by running `bot.py`:
14
14
15
15
```sh
16
16
(venv) $ python bot.py
@@ -37,4 +37,4 @@ After training, you'll see an interactive prompt that you can chat with:
37
37
🪴 Ah, gotcha!
38
38
```
39
39
40
-
The bot will learn from the replies you give and improve its accuracy. You can quite the interactive prompt by typing any of the `exit_conditions` defined in `bot.py`.
40
+
The bot will learn from the replies you give and improve its accuracy. You can quit the interactive prompt by typing any of the `exit_conditions` defined in `bot.py`.
0 commit comments