├── .streamlit └── config.toml ├── Conversation ├── __init__.py └── conversation.py ├── CustomTools ├── __init__.py └── tools.py ├── FileReader ├── __init__.py └── pdfFile.py ├── LICENSE ├── README.md ├── Serp ├── __init__.py └── serp.py ├── app.py ├── imgs ├── chat.png ├── google.jpg ├── main.jpg ├── pdf.jpg ├── search.png ├── sources.png └── youtube.jpg ├── pages └── results.py ├── requirements.txt ├── static ├── ai_icon.png ├── styles.css ├── tab.css └── user_icon.png └── utils.py /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [server] 2 | enableStaticServing = true 3 | -------------------------------------------------------------------------------- /Conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Conversation/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/Conversation/conversation.py -------------------------------------------------------------------------------- /CustomTools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CustomTools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/CustomTools/tools.py -------------------------------------------------------------------------------- /FileReader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FileReader/pdfFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/FileReader/pdfFile.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/README.md -------------------------------------------------------------------------------- /Serp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Serp/serp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/Serp/serp.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/app.py -------------------------------------------------------------------------------- /imgs/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/chat.png -------------------------------------------------------------------------------- /imgs/google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/google.jpg -------------------------------------------------------------------------------- /imgs/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/main.jpg -------------------------------------------------------------------------------- /imgs/pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/pdf.jpg -------------------------------------------------------------------------------- /imgs/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/search.png -------------------------------------------------------------------------------- /imgs/sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/sources.png -------------------------------------------------------------------------------- /imgs/youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/imgs/youtube.jpg -------------------------------------------------------------------------------- /pages/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/pages/results.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/ai_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/static/ai_icon.png -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/static/styles.css -------------------------------------------------------------------------------- /static/tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/static/tab.css -------------------------------------------------------------------------------- /static/user_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/static/user_icon.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aju22/DocumentGPT/HEAD/utils.py --------------------------------------------------------------------------------