├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md └── src ├── data └── april-2023.pdf ├── ingest.py └── single-pdf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/README.md -------------------------------------------------------------------------------- /src/data/april-2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/src/data/april-2023.pdf -------------------------------------------------------------------------------- /src/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/src/ingest.py -------------------------------------------------------------------------------- /src/single-pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrickdch/chat-pdf/HEAD/src/single-pdf.py --------------------------------------------------------------------------------