Skip to content
Mikhail Rozhkov edited this page Feb 28, 2017 · 2 revisions

Welcome to the VUI wiki!

  1. VUI overview
  2. Chatbots

###Python based dialog engines ####1) ChatterBot ChatterBot is a machine-learning based conversational dialog engine build in Python which makes it possible to generate responses based on collections of known conversations. The language independent design of ChatterBot allows it to be trained to speak any language.

How it works

An untrained instance of ChatterBot starts off with no knowledge of how to communicate. Each time a user enters a statement, the library saves the text that they entered and the text that the statement was in response to. As ChatterBot receives more input the number of responses that it can reply and the accuracy of each response in relation to the input statement increase. The program selects the closest matching response by searching for the closest matching known statement that matches the input, it then returns the most likely response to that statement based on how frequently each response is issued by the people the bot communicates with.

GitHub: https://github.com/gunthercox/ChatterBot Documentation: http://chatterbot.readthedocs.io/en/stable/

####2) musicdiscovery-assist (API.ai + Google Home assistant) Google Home assistant for music recommendations, built with Python , Redis & Flask. Using Google Home and API.ai

GitHub: https://github.com/jesseward/musicdiscovery-assist

####3) VOICEAI Voiceai is a library for controlling a machine using text and voice based interface. Features:

  • Music control
  • Hardware Control
  • Conversion Control
  • Web search Control
  • Greeting Control
  • Alarm Control

GitHub: https://github.com/vidursatija/voiceai

####4) W.I.L.L 3.1 W.I.L.L is an open source personal assistant that aims to be free, easy to use, and expandable by the user. It runs on a python based plugin framework accessible by a JSON API that let's you access it from a variety of different platforms. We've provided some platforms for you, but if you don't like any of those, you can easily create your own, or, if you want to change W.I.L.L, setup your own version

GitHub: https://github.com/ironman5366/W.I.L.L Documentation: http://will.readthedocs.io

Clone this wiki locally