├── .gitignore ├── Artifacts ├── Image Resources │ └── images.jpeg └── Outputs │ ├── Screenshot 2023-05-15 212935.png │ ├── Screenshot 2023-05-15 213027.png │ └── Screenshot 2023-05-16 091037.png ├── DocGenius └── PDFChat.py ├── LICENSE ├── README.md ├── app.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /Artifacts/Image Resources/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/Artifacts/Image Resources/images.jpeg -------------------------------------------------------------------------------- /Artifacts/Outputs/Screenshot 2023-05-15 212935.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/Artifacts/Outputs/Screenshot 2023-05-15 212935.png -------------------------------------------------------------------------------- /Artifacts/Outputs/Screenshot 2023-05-15 213027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/Artifacts/Outputs/Screenshot 2023-05-15 213027.png -------------------------------------------------------------------------------- /Artifacts/Outputs/Screenshot 2023-05-16 091037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/Artifacts/Outputs/Screenshot 2023-05-16 091037.png -------------------------------------------------------------------------------- /DocGenius/PDFChat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/DocGenius/PDFChat.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/DocGenius-Revolutionizing-PDFs-with-AI/HEAD/requirements.txt --------------------------------------------------------------------------------