All Projects → alfredfrancis → Ai Chatbot Framework

alfredfrancis / Ai Chatbot Framework

Licence: mit
A python chatbot framework with Natural Language Understanding and Artificial Intelligence.

Programming Languages

python
139335 projects - #7 most used programming language
typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
SCSS
7915 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to Ai Chatbot Framework

Convai Bot 1337
NIPS Conversational Intelligence Challenge 2017 Winner System: Skill-based Conversational Agent with Supervised Dialog Manager
Stars: ✭ 65 (-95.84%)
Mutual labels:  ai, chatbot, chatbots, conversation
Tensorflow Ml Nlp
텐서플로우와 머신러닝으로 시작하는 자연어처리(로지스틱회귀부터 트랜스포머 챗봇까지)
Stars: ✭ 176 (-88.75%)
Mutual labels:  chatbot, sklearn, nltk
Rivescript Python
A RiveScript interpreter for Python. RiveScript is a scripting language for chatterbots.
Stars: ✭ 142 (-90.92%)
Mutual labels:  ai, chatbot, chatbots
Botpress
🤖 Dev tools to reliably understand text and automate conversations. Built-in NLU. Connect & deploy on any messaging channel (Slack, MS Teams, website, Telegram, etc).
Stars: ✭ 9,486 (+506.52%)
Mutual labels:  chatbot, chatbots, conversation
Python Ai Assistant
Python AI assistant 🧠
Stars: ✭ 219 (-86%)
Mutual labels:  ai, sklearn, nltk
Facemoji
😆 A voice chatbot that can imitate your expression. OpenCV+Dlib+Live2D+Moments Recorder+Turing Robot+Iflytek IAT+Iflytek TTS
Stars: ✭ 320 (-79.54%)
Mutual labels:  ai, chatbot, chatbots
Rivescript Js
A RiveScript interpreter for JavaScript. RiveScript is a scripting language for chatterbots.
Stars: ✭ 350 (-77.62%)
Mutual labels:  ai, chatbot, chatbots
Bot Context
Easy, powerful, functional way to maintain conversational context in chat bots.
Stars: ✭ 44 (-97.19%)
Mutual labels:  ai, chatbots
Caloriecounter
AWS Lex based chatbot that calculates calories based on different fast food restaurants. This was an entry for a coding challenge on DevPost, and is actively used on Facebook Messenger. The issues list is actively managed as what defects or improvements are found by real world usage.
Stars: ✭ 46 (-97.06%)
Mutual labels:  ai, chatbot
Everydaywechat
微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等)
Stars: ✭ 8,688 (+455.5%)
Mutual labels:  ai, chatbot
Watbot
An Android ChatBot powered by IBM Watson Services (Assistant V1, Text-to-Speech, and Speech-to-Text with Speaker Recognition) on IBM Cloud.
Stars: ✭ 64 (-95.91%)
Mutual labels:  chatbot, conversation
Pytlas
An open-source 🤖💬 Python 3 assistant library built for people and made to be super easy to setup and understand
Stars: ✭ 34 (-97.83%)
Mutual labels:  ai, chatbot
Ryuzaki bot
Simple chatbot in Python using NLTK and scikit-learn
Stars: ✭ 28 (-98.21%)
Mutual labels:  chatbot, nltk
Dialogflow Angular5
💬 Bot in Angular 5 & DialogFlow
Stars: ✭ 52 (-96.68%)
Mutual labels:  ai, chatbot
Chatito
🎯🗯 Generate datasets for AI chatbots, NLP tasks, named entity recognition or text classification models using a simple DSL!
Stars: ✭ 678 (-56.65%)
Mutual labels:  chatbot, chatbots
Cltk
The Classical Language Toolkit
Stars: ✭ 650 (-58.44%)
Mutual labels:  ai, nltk
Megahal
MegaHAL is a learning chatterbot.
Stars: ✭ 60 (-96.16%)
Mutual labels:  ai, chatbot
Text Analytics With Python
Learn how to process, classify, cluster, summarize, understand syntax, semantics and sentiment of text data with the power of Python! This repository contains code and datasets used in my book, "Text Analytics with Python" published by Apress/Springer.
Stars: ✭ 1,132 (-27.62%)
Mutual labels:  nltk, natural-language
Botonomous
A PHP Framework For Creating Autonomous Slack Bots
Stars: ✭ 109 (-93.03%)
Mutual labels:  ai, chatbot
Rasa nlu chi
Turn Chinese natural language into structured data 中文自然语言理解
Stars: ✭ 1,166 (-25.45%)
Mutual labels:  chatbot, natural-language

Join the chat at https://gitter.im/ai-chatbot-framework/Lobby Build Status

An AI Chatbot framework built in Python

Building a chatbot can sound daunting, but it’s totally doable. AI Chatbot Framework is an AI powered conversational dialog interface built in Python. With this tool, it’s easy to create Natural Language conversational scenarios with no coding efforts whatsoever. The smooth UI makes it effortless to create and train conversations to the bot and it continuously gets smarter as it learns from conversations it has with people. AI Chatbot Framework can live on any channel of your choice (such as Messenger, Slack etc.) by integrating it’s API with that platform.

You don’t need to be an expert at artificial intelligence to create an awesome chatbot that has AI capabilities. With this boilerplate project you can create an AI powered chatting machine in no time.There may be scores of bugs. So feel free to contribute via pull requests.

Installation

Using docker-compose (Recommended)

docker-compose build
docker-compose up -d
docker-compose exec iky_backend python manage.py migrate

Using Docker

# build docker images
docker build -t iky_backend:2.0.0 .
docker build -t iky_gateway:2.0.0 frontend/.

# start a mongodb server
docker run --name mongodb -d mongo:3.6

# start iky backend
docker run -d --name=iky_backend --link mongodb:mongodb -e="APPLICATION_ENV=Production" iky_backend:2.0.0

# setup default intents
docker exec -it iky_backend python manage.py migrate

# start iky gateway with frontend
docker run -d --name=iky_gateway --link iky_backend:iky_backend -p 8080:80 iky_gateway:2.0.0

without docker

  • Setup Virtualenv and install python requirements
virtualenv -p python3 venv
source venv/bin/activate
python manage.py migrate
python run.py
  • Production
APPLICATION_ENV="Production" gunicorn -k gevent --bind 0.0.0.0:8080 run:app

Update Frontend Dist

  • Run Development mode
cd frontend
npm install
ng serve
  • Take Production build
cd frontend
ng build --prod --optimize

Heroku

Deploy

  • add your dev/production configurations in config.py

DB

Restore

You can import some default intents using following steps

Screenshots

Tutorial

Checkout this basic tutorial on youtube,

IMAGE ALT TEXT HERE

Watch tutorial on Fullfilling your Chatbot Intent with an API Call - Recipe Search Bot

Please visit my website to see my personal chatbot in action

Todos

  • Write Unit Tests
  • Multilingual Intent Classifier
  • PyCRFSuite to sklearn-crfsuite migration
  • Support follow up conversations

Dependencies documentations

Contributors

Free Software, Hell Yeah!


Made with ❤️ at God's Own Country.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].