├── .gitignore ├── ChatterBot ├── ChatData.txt └── TrainChatterBot.py ├── LICENSE ├── README.md ├── assests ├── chatterbot_install.md ├── structure.png └── zfb.png ├── chat ├── Chat.py ├── ResponseManager.py ├── SpeakManager.py └── __init__.py ├── config ├── Config.txt └── UpCharacteristic.txt ├── handler ├── Handler.py └── __init__.py ├── main.py ├── requirements.txt └── utils ├── Config.py ├── DB.py ├── TaskQueue.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatterBot/ChatData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/ChatterBot/ChatData.txt -------------------------------------------------------------------------------- /ChatterBot/TrainChatterBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/ChatterBot/TrainChatterBot.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/README.md -------------------------------------------------------------------------------- /assests/chatterbot_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/assests/chatterbot_install.md -------------------------------------------------------------------------------- /assests/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/assests/structure.png -------------------------------------------------------------------------------- /assests/zfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/assests/zfb.png -------------------------------------------------------------------------------- /chat/Chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/chat/Chat.py -------------------------------------------------------------------------------- /chat/ResponseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/chat/ResponseManager.py -------------------------------------------------------------------------------- /chat/SpeakManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/chat/SpeakManager.py -------------------------------------------------------------------------------- /chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/chat/__init__.py -------------------------------------------------------------------------------- /config/Config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/config/Config.txt -------------------------------------------------------------------------------- /config/UpCharacteristic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/config/UpCharacteristic.txt -------------------------------------------------------------------------------- /handler/Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/handler/Handler.py -------------------------------------------------------------------------------- /handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/handler/__init__.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/utils/Config.py -------------------------------------------------------------------------------- /utils/DB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/utils/DB.py -------------------------------------------------------------------------------- /utils/TaskQueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/utils/TaskQueue.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwy27/LiveStreamAI/HEAD/utils/__init__.py --------------------------------------------------------------------------------