├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── SampleDocs ├── Paul_Graham_Essay.txt ├── Sherlock_holmes.txt └── happiesCountries.csv ├── chat_with_docs.py ├── docker-compose.yml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/README.md -------------------------------------------------------------------------------- /SampleDocs/Paul_Graham_Essay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/SampleDocs/Paul_Graham_Essay.txt -------------------------------------------------------------------------------- /SampleDocs/Sherlock_holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/SampleDocs/Sherlock_holmes.txt -------------------------------------------------------------------------------- /SampleDocs/happiesCountries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/SampleDocs/happiesCountries.csv -------------------------------------------------------------------------------- /chat_with_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/chat_with_docs.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoopshrma/Chat-with-Docs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | llama-index 2 | streamlit 3 | pandasai 4 | pypdf 5 | docx2txt 6 | --------------------------------------------------------------------------------