├── .DS_Store ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── escaflowne.txt ├── graphrag ├── .DS_Store ├── __init__.py ├── __main__.py ├── cli │ ├── __init__.py │ └── main.py ├── connectors │ ├── __init__.py │ ├── neo4j_connection.py │ └── qdrant_connection.py ├── core │ ├── __init__.py │ ├── ingest.py │ ├── nlp_graph.py │ ├── retrieval.py │ └── triplets.py └── utils │ ├── __init__.py │ ├── common.py │ ├── config.py │ └── logger.py ├── lensman.txt ├── robotech.txt ├── setup.py └── verify_setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /escaflowne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/escaflowne.txt -------------------------------------------------------------------------------- /graphrag/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/.DS_Store -------------------------------------------------------------------------------- /graphrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/__init__.py -------------------------------------------------------------------------------- /graphrag/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/__main__.py -------------------------------------------------------------------------------- /graphrag/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphrag/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/cli/main.py -------------------------------------------------------------------------------- /graphrag/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphrag/connectors/neo4j_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/connectors/neo4j_connection.py -------------------------------------------------------------------------------- /graphrag/connectors/qdrant_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/connectors/qdrant_connection.py -------------------------------------------------------------------------------- /graphrag/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphrag/core/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/core/ingest.py -------------------------------------------------------------------------------- /graphrag/core/nlp_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/core/nlp_graph.py -------------------------------------------------------------------------------- /graphrag/core/retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/core/retrieval.py -------------------------------------------------------------------------------- /graphrag/core/triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/core/triplets.py -------------------------------------------------------------------------------- /graphrag/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/utils/__init__.py -------------------------------------------------------------------------------- /graphrag/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/utils/common.py -------------------------------------------------------------------------------- /graphrag/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/utils/config.py -------------------------------------------------------------------------------- /graphrag/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/graphrag/utils/logger.py -------------------------------------------------------------------------------- /lensman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/lensman.txt -------------------------------------------------------------------------------- /robotech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/robotech.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/setup.py -------------------------------------------------------------------------------- /verify_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrael-soju/nlp-graphrag-with-qdrant-and-neo4j/HEAD/verify_setup.py --------------------------------------------------------------------------------