Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 542 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 542 Bytes

chatter

A simple bot to talk to github

Installation

First, install uwsgi and flask

sudo apt-get install uwsgi uwsgi-plugin-python python-flask

Next, configure nginx by adding the following lines to a server block.

location /chatter/ {
  include uwsgi_params;
  uwsgi_pass 127.0.0.1:9001;
}

Todo

Look at making the robot more conversational. NLTK is a good start, and this StackOverflow answer has some more links.