IKY is an AI based conversational dialog interface built in Python. It can be used to create Natural language conversation scenarios with zero coding effort.The simple web UI makes it very easy to create and train your conversations. Iky's API can be used to integrate with any channel of your choice such as Messenger,Slack etc. This is a very basic project so you can start building on it.It may contain lots of bugs,please free to contribute via pull requests.
- add your dev/production configurations in config.py
class Production(Config):
# MongoDB Database Details
DB_HOST = "mongodb://127.0.0.1:27017/"
DB_USERNAME = ""
DB_PASSWORD = ""
# Web Server details
WEB_SERVER_PORT = 80
class Development(Config):
DEBUG = True
docker build -t "ai-chat-bot" .
docker run --name=chabot-node-1 -e="APPLICATION_ENV=Production" -v ./:/app-container -p 8001:8080 -it ai-chat-bot gunicorn --bind 0.0.0.0:8080 run:app
docker exec -it chabot-node-1 python /app-container/setup.py
docker-compose build
docker-compose up -d
- Then use pip to install all required python packages
pip install -r requirements.txt
- Run setup script for setting up some default intents
$ python setup.py
- Development
$ python run.py
- Production
$ APPLICATION_ENV="Production" gunicorn -k gevent --bind 0.0.0.0:8001 run:app
That's it.
Navigate to http://localhost:8001
Checkout this basic tutorial on youtube,
Please visit my website to see my personal chatbot in action
See python CRfSuite
- Write Unit Tests
- Improve intent classification accuracy
- Add parameter types
- Migrate UI to React JS
Free Software, Hell Yeah!
Made with ❤️ at God's Own Country.