├── Handbell-ringing-sound-effect.mp3 ├── LICENSE ├── Procfile ├── README.md ├── UI ├── chat_screen.PNG └── main_screen.PNG ├── __pycache__ └── chatbotconfig.cpython-37.pyc ├── chatbot.py ├── chatbot ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── forms.cpython-37.pyc │ ├── routes.cpython-37.pyc │ └── routes.cpython-38.pyc ├── forms.py ├── routes.py └── templates │ ├── index.html │ └── main.html ├── chatbot_codes ├── classes.pkl ├── full_code.py ├── intents.json ├── mymodel.h5 └── words.pkl ├── chatbotconfig.py ├── nltk.txt ├── requirements.txt └── runtime.txt /Handbell-ringing-sound-effect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/Handbell-ringing-sound-effect.mp3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn chatbot:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/README.md -------------------------------------------------------------------------------- /UI/chat_screen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/UI/chat_screen.PNG -------------------------------------------------------------------------------- /UI/main_screen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/UI/main_screen.PNG -------------------------------------------------------------------------------- /__pycache__/chatbotconfig.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/__pycache__/chatbotconfig.cpython-37.pyc -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- 1 | from chatbot import app -------------------------------------------------------------------------------- /chatbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/__init__.py -------------------------------------------------------------------------------- /chatbot/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /chatbot/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /chatbot/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /chatbot/__pycache__/routes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/__pycache__/routes.cpython-37.pyc -------------------------------------------------------------------------------- /chatbot/__pycache__/routes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/__pycache__/routes.cpython-38.pyc -------------------------------------------------------------------------------- /chatbot/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/forms.py -------------------------------------------------------------------------------- /chatbot/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/routes.py -------------------------------------------------------------------------------- /chatbot/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/templates/index.html -------------------------------------------------------------------------------- /chatbot/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot/templates/main.html -------------------------------------------------------------------------------- /chatbot_codes/classes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot_codes/classes.pkl -------------------------------------------------------------------------------- /chatbot_codes/full_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot_codes/full_code.py -------------------------------------------------------------------------------- /chatbot_codes/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot_codes/intents.json -------------------------------------------------------------------------------- /chatbot_codes/mymodel.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot_codes/mymodel.h5 -------------------------------------------------------------------------------- /chatbot_codes/words.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbot_codes/words.pkl -------------------------------------------------------------------------------- /chatbotconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/chatbotconfig.py -------------------------------------------------------------------------------- /nltk.txt: -------------------------------------------------------------------------------- 1 | punkt 2 | wordnet 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Karan-Malik/Chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.10 2 | --------------------------------------------------------------------------------