├── Procfile ├── README.md ├── app.py ├── config.ini ├── config ├── __pycache__ │ └── config_reader.cpython-37.pyc └── config_reader.py ├── conversationLogs ├── dummy └── session1.txt ├── documentation ├── azureWeatherBot.docx └── ~$ureWeatherBot.docx ├── logger ├── __pycache__ │ └── logger.cpython-37.pyc └── logger.py ├── luis ├── __pycache__ │ └── luisApp.cpython-37.pyc └── luisApp.py ├── requirements.txt └── weather ├── __pycache__ └── weatherApp.cpython-37.pyc └── weatherApp.py /Procfile: -------------------------------------------------------------------------------- 1 | web: python app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Weather-Chatbot-Using-Luis -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/app.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/config.ini -------------------------------------------------------------------------------- /config/__pycache__/config_reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/config/__pycache__/config_reader.cpython-37.pyc -------------------------------------------------------------------------------- /config/config_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/config/config_reader.py -------------------------------------------------------------------------------- /conversationLogs/dummy: -------------------------------------------------------------------------------- 1 | Dummy text -------------------------------------------------------------------------------- /conversationLogs/session1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/conversationLogs/session1.txt -------------------------------------------------------------------------------- /documentation/azureWeatherBot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/documentation/azureWeatherBot.docx -------------------------------------------------------------------------------- /documentation/~$ureWeatherBot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/documentation/~$ureWeatherBot.docx -------------------------------------------------------------------------------- /logger/__pycache__/logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/logger/__pycache__/logger.cpython-37.pyc -------------------------------------------------------------------------------- /logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/logger/logger.py -------------------------------------------------------------------------------- /luis/__pycache__/luisApp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/luis/__pycache__/luisApp.cpython-37.pyc -------------------------------------------------------------------------------- /luis/luisApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/luis/luisApp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/requirements.txt -------------------------------------------------------------------------------- /weather/__pycache__/weatherApp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/weather/__pycache__/weatherApp.cpython-37.pyc -------------------------------------------------------------------------------- /weather/weatherApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Weather-Chatbot-Using-Luis/HEAD/weather/weatherApp.py --------------------------------------------------------------------------------