├── .gitignore ├── LICENSE ├── README.md ├── demo.env ├── prompts ├── claim_extraction.txt ├── community_report.txt ├── entity_extraction.txt └── summarize_descriptions.txt ├── requirements.txt ├── settings.demo.yaml └── splitter └── tokens.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/README.md -------------------------------------------------------------------------------- /demo.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/demo.env -------------------------------------------------------------------------------- /prompts/claim_extraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/prompts/claim_extraction.txt -------------------------------------------------------------------------------- /prompts/community_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/prompts/community_report.txt -------------------------------------------------------------------------------- /prompts/entity_extraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/prompts/entity_extraction.txt -------------------------------------------------------------------------------- /prompts/summarize_descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/prompts/summarize_descriptions.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/settings.demo.yaml -------------------------------------------------------------------------------- /splitter/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airmomo/graphrag-practice-chinese/HEAD/splitter/tokens.py --------------------------------------------------------------------------------