├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── chatbot.py ├── example.png ├── max-question-answering-web-app.yaml ├── requirements.txt ├── static ├── css │ ├── app.css │ └── bootstrap.css └── js │ └── jquery-3.4.1.min.js ├── templates └── index.html ├── test-requirements.txt └── txt.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/app.py -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/chatbot.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/example.png -------------------------------------------------------------------------------- /max-question-answering-web-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/max-question-answering-web-app.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | strsim 2 | numpy 3 | -------------------------------------------------------------------------------- /static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/static/css/app.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/static/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/templates/index.html -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | flake8==3.8.4 2 | -------------------------------------------------------------------------------- /txt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/MAX-Question-Answering-Web-App/HEAD/txt.json --------------------------------------------------------------------------------