All Projects → kevwan → chatbot

kevwan / chatbot

Licence: MIT license
A fast responsive, machine learning, conversational dialog engine for creating chat bots, written in Go.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to chatbot

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 (+2633.72%)
Mutual labels:  conversation, chatbot-framework
Chatterbot
ChatterBot is a machine learning, conversational dialog engine for creating chat bots
Stars: ✭ 11,813 (+3304.32%)
Mutual labels:  chatterbot, conversation
YouTube-Tutorials--Italian
📂 Source Code for (some of) the Programming Tutorials from my Italian YouTube Channel and website ProgrammareInPython.it. This is just a small portion of the content: please visit the website for more.
Stars: ✭ 28 (-91.93%)
Mutual labels:  chatterbot
FashionShopApp
Fashion Shop App : Flask, ChatterBot, ElasticSearch, Recommender-System
Stars: ✭ 28 (-91.93%)
Mutual labels:  chatterbot
rtfmbot
Because we're all tired of answering questions when people should clearly RTFM.
Stars: ✭ 14 (-95.97%)
Mutual labels:  chatterbot
core
The conversational engine and framework that powers the OpenDialog Conversational Experience platform.
Stars: ✭ 32 (-90.78%)
Mutual labels:  chatbot-framework
DirectLineAndroidSample
Android Sample for Direct Line API - Microsoft Bot Framework
Stars: ✭ 21 (-93.95%)
Mutual labels:  conversation
siPintar
Indonesian Chatbot built by Multi Layer Perceptron(Neural Network)
Stars: ✭ 37 (-89.34%)
Mutual labels:  chatterbot
chatterbot-weather
A ChatterBot logic adapter that returns information about the current weather
Stars: ✭ 27 (-92.22%)
Mutual labels:  chatterbot
botnaut
Chatbot Framework for Facebook Messenger platform
Stars: ✭ 13 (-96.25%)
Mutual labels:  chatbot-framework
neocortex
🧠Neocortex is a tool to connect your cognitive service (e.g. DialogFlow) 🤖 with your communication channels (like facebook) 📞to create amazing bots
Stars: ✭ 24 (-93.08%)
Mutual labels:  chatbot-framework
vr-speech-sandbox-cardboard
WARNING: This repository is no longer maintained ⚠️ This repository will not be updated. The repository will be kept available in read-only mode.
Stars: ✭ 27 (-92.22%)
Mutual labels:  conversation
FacebookChatStatistics
Statistics of any Facebook Messenger conversation
Stars: ✭ 49 (-85.88%)
Mutual labels:  conversation
Wechat Admin
Wechat Management System
Stars: ✭ 1,716 (+394.52%)
Mutual labels:  chatterbot
gort
Gort is a chatbot framework designed from the ground up for chatops.
Stars: ✭ 381 (+9.8%)
Mutual labels:  chatbot-framework
NLP-chatbot
A medical chatbot that asks patients about their health and books a doctor's appointment on demand.
Stars: ✭ 43 (-87.61%)
Mutual labels:  chatterbot
wolf-core
🐺 Declarative development for state driven dynamic prompt flow
Stars: ✭ 26 (-92.51%)
Mutual labels:  conversation
chatterbot-live-example
[Maintainer Required] 📘 Notes to deploy chatterbot on Heroku cloud ☁️
Stars: ✭ 22 (-93.66%)
Mutual labels:  chatterbot
sepia-assist-server
Core server of the SEPIA Framework responsible for NLU, conversation, smart-service integration, user-accounts and more.
Stars: ✭ 81 (-76.66%)
Mutual labels:  chatbot-framework
flutter freshchat
The unofficial flutter plugin for Freshchat
Stars: ✭ 31 (-91.07%)
Mutual labels:  conversation

chatbot

English | 简体中文

chatbot is a conversational dialog engine build in Go which makes it possible to generate responses based on collections of known conversations. The language independent design of chatbot allows it to be trained to speak any language. It’s much faster than ChatterBot, our benchmark on 120 million conversations:

  • ChatterBot takes 21s to answer
  • chatbot takes 18ms to answer

Project layout and command line tools

  • bot

    Conversational dialog engine

  • cli

    • train

      Train the given conversation data and generate corpus format file .gob

      • -d reads all json and yaml corpus files in the specified directory
      • -i read the specified json or yaml corpus files, splitting multiple files by commas
      • -o specify the output .gob file
      • -m print memory usage at regular intervals
    • ask

      An example question and answer command line tool

      • -v verbose
      • -c trained .gob file
      • -t data for several possible answers

Data format

The data format can be provided via yaml or json files, refer to the format in https://github.com/kevwan/chatterbot-corpus. Roughly, it is as follows.

categories:
- AI
- artificial intelligence
conversations:
- - What is AI?
  - Artificial Intelligence is the branch of engineering and science devoted to constructing machines that think.
- - Are you sentient?
  - Sort of.

Example of a question and answer

user: how are you?
bot: I am doing well, how about you?
user: I'm doing well, thanks!
bot: That is good to hear

Acknowledgements

go-zero - https://github.com/zeromicro/go-zero

The MapReduce implementation of go-zero in core/mr package gives chatbot a huge performance boost!

ChatterBot - https://github.com/gunthercox/ChatterBot

I was using ChatterBot at first, but it responds too slow, so I decided to implement it myself. Thanks to ChatterBot, great project!

Give a Star!

If you like or are using this project to learn or start your solution, please give it a star. Thanks!

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].