├── LICENSE ├── README.md ├── app.py ├── chat.py ├── data.pth ├── intents.json ├── model.py ├── nltk_utils.py ├── static ├── app.js ├── images │ └── chatbox-icon.svg └── style.css ├── templates └── base.html └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/app.py -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/chat.py -------------------------------------------------------------------------------- /data.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/data.pth -------------------------------------------------------------------------------- /intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/intents.json -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/model.py -------------------------------------------------------------------------------- /nltk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/nltk_utils.py -------------------------------------------------------------------------------- /static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/static/app.js -------------------------------------------------------------------------------- /static/images/chatbox-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/static/images/chatbox-icon.svg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/templates/base.html -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gayan-Sachintha/Riverston-Life-AI-Chatbot-flask/HEAD/train.py --------------------------------------------------------------------------------