├── .gitignore ├── LICENSE ├── README.md ├── SDG.pdf ├── app.py ├── requirements.txt ├── script.py ├── static ├── docs │ └── SDG.pdf └── output │ └── QA.csv └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/README.md -------------------------------------------------------------------------------- /SDG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/SDG.pdf -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/requirements.txt -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/script.py -------------------------------------------------------------------------------- /static/docs/SDG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/static/docs/SDG.pdf -------------------------------------------------------------------------------- /static/output/QA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/static/output/QA.csv -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Question-Answer-Generation-App/HEAD/templates/index.html --------------------------------------------------------------------------------