Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vernwalrahul committed Nov 22, 2017
1 parent 8134fe1 commit e6f84a1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion predict_reply.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from weather import *

greeting=(["hi"])
greeting=(["hi","hey","hello"])
def classify(msg):
msg=msg.strip()

Expand Down
12 changes: 11 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Facebook Messenger Bot
This is a simple python template that uses Flask to build a webhook for Facebook's Messenger Bot API.

Read more in my [tutorial that uses this repository](https://tutorials.botsfloor.com/creating-your-messenger-bot-4f71af99d26b).

The aim is to create chatbot with some added features of virtual assistant.

**PS: Let me know if you want to contribute, I can add you as a tester to make the bot respond on your messages.**

## TODO:
- **Extend APIs**: Presently, it has been integrated with weather API only. Extend it to railway APIs for showing live train status, train between two stations, schedule and other stuffs.

- **0 understanding**: Unfortunately, most of the stuffs has been hard coded. Responses are being predicted on the basis of string matching. Integrate NLP APIs or self written codes to make conversation more realistic.

- **Schedule reminder**: This is more like your chatbot assistant. Extend the program to schedule a reminder for specific date and time and should ping the user accordingly with meaningful messages.

0 comments on commit e6f84a1

Please sign in to comment.