gitextract_93gfmh96/ ├── .gitignore ├── Blog/ │ └── Hand-on-RAG.md ├── RAG/ │ ├── Embeddings.py │ ├── LLM.py │ ├── Reranker.py │ ├── VectorBase.py │ └── utils.py ├── README.md ├── data/ │ ├── 2024-01-23_10-07-23/ │ │ └── Git教程.md │ ├── 2024-01-23_10-10-05/ │ │ └── Git教程.md │ ├── 2024-01-23_10-14-41/ │ │ └── Github Api 使用.md │ ├── 2024-01-23_11-59-03/ │ │ └── Github Api 使用.md │ └── 2024-01-23_12-01-19/ │ └── Github Api 使用.md ├── example.py ├── example_with_reranker.py ├── paper.md ├── requirements.txt ├── storage/ │ ├── doecment.json │ └── vectors.json └── test.ipynb