├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── data └── uber_10q_march_2022.pdf ├── example.env ├── ingest.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/app.py -------------------------------------------------------------------------------- /data/uber_10q_march_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/data/uber_10q_march_2022.pdf -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/example.env -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/ingest.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudarshan-koirala/RAG-chat-with-documents/HEAD/requirements.txt --------------------------------------------------------------------------------