├── .gitignore ├── .python-version ├── LICENSE ├── app.py ├── docs ├── PDF-LangChain.jpg ├── demo1.png ├── demo2.png └── demo3.png ├── htmlTemplates.py ├── images ├── 1.png ├── 2.png ├── 3.png ├── favicon.png ├── logo.png └── qnai.png ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/LICENSE -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/app.py -------------------------------------------------------------------------------- /docs/PDF-LangChain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/docs/PDF-LangChain.jpg -------------------------------------------------------------------------------- /docs/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/docs/demo1.png -------------------------------------------------------------------------------- /docs/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/docs/demo2.png -------------------------------------------------------------------------------- /docs/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/docs/demo3.png -------------------------------------------------------------------------------- /htmlTemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/htmlTemplates.py -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/images/3.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/qnai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/images/qnai.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilsbuilds/QnAi-Ask2PDFs/HEAD/requirements.txt --------------------------------------------------------------------------------