├── LICENSE ├── README.md ├── datasets └── link.txt ├── demo └── Corpus.json ├── docs └── datasets.html ├── examples ├── local_BGE_local_LLM.py └── openai_all.py ├── figs └── framework.png ├── graphrag ├── __init__.py ├── _llm.py ├── _op.py ├── _splitter.py ├── _storage │ ├── __init__.py │ ├── gdb_neo4j.py │ ├── gdb_networkx.py │ ├── kv_json.py │ ├── vdb_hnswlib.py │ ├── vdb_nanovectordb.py │ └── vdb_timestamp.py ├── _utils.py ├── base.py ├── evaluate.py ├── graphrag.py └── prompt.py ├── models └── download.py ├── reproduce ├── README.md ├── complextr.py ├── tempreason.py └── timeqa.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/README.md -------------------------------------------------------------------------------- /datasets/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/datasets/link.txt -------------------------------------------------------------------------------- /demo/Corpus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/demo/Corpus.json -------------------------------------------------------------------------------- /docs/datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/docs/datasets.html -------------------------------------------------------------------------------- /examples/local_BGE_local_LLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/examples/local_BGE_local_LLM.py -------------------------------------------------------------------------------- /examples/openai_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/examples/openai_all.py -------------------------------------------------------------------------------- /figs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/figs/framework.png -------------------------------------------------------------------------------- /graphrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/__init__.py -------------------------------------------------------------------------------- /graphrag/_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_llm.py -------------------------------------------------------------------------------- /graphrag/_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_op.py -------------------------------------------------------------------------------- /graphrag/_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_splitter.py -------------------------------------------------------------------------------- /graphrag/_storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/__init__.py -------------------------------------------------------------------------------- /graphrag/_storage/gdb_neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/gdb_neo4j.py -------------------------------------------------------------------------------- /graphrag/_storage/gdb_networkx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/gdb_networkx.py -------------------------------------------------------------------------------- /graphrag/_storage/kv_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/kv_json.py -------------------------------------------------------------------------------- /graphrag/_storage/vdb_hnswlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/vdb_hnswlib.py -------------------------------------------------------------------------------- /graphrag/_storage/vdb_nanovectordb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/vdb_nanovectordb.py -------------------------------------------------------------------------------- /graphrag/_storage/vdb_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_storage/vdb_timestamp.py -------------------------------------------------------------------------------- /graphrag/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/_utils.py -------------------------------------------------------------------------------- /graphrag/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/base.py -------------------------------------------------------------------------------- /graphrag/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/evaluate.py -------------------------------------------------------------------------------- /graphrag/graphrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/graphrag.py -------------------------------------------------------------------------------- /graphrag/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/graphrag/prompt.py -------------------------------------------------------------------------------- /models/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/models/download.py -------------------------------------------------------------------------------- /reproduce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/reproduce/README.md -------------------------------------------------------------------------------- /reproduce/complextr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/reproduce/complextr.py -------------------------------------------------------------------------------- /reproduce/tempreason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/reproduce/tempreason.py -------------------------------------------------------------------------------- /reproduce/timeqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/reproduce/timeqa.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/DyG-RAG/HEAD/requirements.txt --------------------------------------------------------------------------------