VideoChatBot is a library that gives python users an interaction utility that works as a videocall to a bot.
An istance of vcbot starts with default chat data as its training set. The run function of this instance is used to launch the interaction. Thereafter, two threads are instantiated for video display and ensemble process. The ensemble works by taking user image and audio as input, and generates a response by a standard chatterbot which is fed with user emotion (inferred from user image and audio) along with the user chat text (inferred from audio).
This package can be installed from PyPi by running:
pip install VideoChatBot
or
pip install https://files.pythonhosted.org/packages/5b/cc/9dbb790525fe3daa8f0822e60eec38dfea8af5e33af0334dc66b4a022ac4/VideoChatBot-0.0.2.tar.gz
from VideoChatBot import vcbot
mybot = vcbot()
mybot.run()
See release notes for changes https://github.com/avaish1409/VideoChatBot/releases
- Create a fork of the main VideoChatBot repository on GitHub.
- Make your changes in a branch named something different from
master
and titled as per your contribution, e.g. create a new branchphonetics-based-gif
. - Create a pull request.
- Please follow the Python style guide for PEP-8.
VideoChatBot is licensed under the GNU General Public License v3.0.