├── .gitignore ├── README.md ├── app.py ├── chroma_db ├── 17feec27-430e-4bbf-9ad8-b8bf9094bf44 │ ├── data_level0.bin │ ├── header.bin │ ├── length.bin │ └── link_lists.bin └── chroma.sqlite3 ├── consume_chroma.ipynb ├── consume_chroma_apple_silicon.ipynb ├── data └── machine_learning_yearning_by_andrew_ng.pdf ├── git-images ├── git-image-1.png └── git-image-2.png └── preprocess_chroma.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/app.py -------------------------------------------------------------------------------- /chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/data_level0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/data_level0.bin -------------------------------------------------------------------------------- /chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/header.bin -------------------------------------------------------------------------------- /chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/length.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/length.bin -------------------------------------------------------------------------------- /chroma_db/17feec27-430e-4bbf-9ad8-b8bf9094bf44/link_lists.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chroma_db/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/chroma_db/chroma.sqlite3 -------------------------------------------------------------------------------- /consume_chroma.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/consume_chroma.ipynb -------------------------------------------------------------------------------- /consume_chroma_apple_silicon.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/consume_chroma_apple_silicon.ipynb -------------------------------------------------------------------------------- /data/machine_learning_yearning_by_andrew_ng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/data/machine_learning_yearning_by_andrew_ng.pdf -------------------------------------------------------------------------------- /git-images/git-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/git-images/git-image-1.png -------------------------------------------------------------------------------- /git-images/git-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/git-images/git-image-2.png -------------------------------------------------------------------------------- /preprocess_chroma.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easonlai/chat_with_pdf_streamlit_llama2/HEAD/preprocess_chroma.ipynb --------------------------------------------------------------------------------