gitextract_hq6ob10f/ ├── .claude/ │ └── commands/ │ └── dedupe.md ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── autoclose-labeled-issues.yml │ ├── backfill-dedupe.yml │ ├── issue-dedupe.yml │ └── remove-autoclose-label.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cookbook/ │ ├── README.md │ ├── agentic_retrieval.ipynb │ ├── pageIndex_chat_quickstart.ipynb │ ├── pageindex_RAG_simple.ipynb │ └── vision_RAG_pageindex.ipynb ├── pageindex/ │ ├── __init__.py │ ├── config.yaml │ ├── page_index.py │ ├── page_index_md.py │ └── utils.py ├── requirements.txt ├── run_pageindex.py ├── scripts/ │ ├── autoclose-labeled-issues.js │ └── comment-on-duplicates.sh ├── tests/ │ └── results/ │ ├── 2023-annual-report-truncated_structure.json │ ├── 2023-annual-report_structure.json │ ├── PRML_structure.json │ ├── Regulation Best Interest_Interpretive release_structure.json │ ├── Regulation Best Interest_proposed rule_structure.json │ ├── earthmover_structure.json │ ├── four-lectures_structure.json │ └── q1-fy25-earnings_structure.json └── tutorials/ ├── doc-search/ │ ├── README.md │ ├── description.md │ ├── metadata.md │ └── semantics.md └── tree-search/ └── README.md