Skip to main content

A simple graph-based retriever using Neo4j and Qdrant

Project description

Simple Graph Retriever

A Python SDK for indexing a Neo4j graph into a vector database (Qdrant) and performing retrieval-augmented generation (RAG) tasks against it.

This SDK handles the heavy lifting of graph processing, including:

  • Community Detection: Uses the Leiden algorithm to identify communities within your graph structure.
  • Chunking: Breaks down nodes and their local context into "chunks" suitable for embedding.
  • Vector Indexing: Embeds and indexes both community summaries and individual chunks into Qdrant.
  • Graph Retrieval: Retrieves relevant subgraphs based on a natural language query, with fine-grained control over the expansion process.

Table of Contents


1. Installation

To install the SDK, clone this repository and use pip to install it in editable mode, which is recommended for development.

pip install simple_graph_retriever==1.0.0-rc.9

2. Configuration

The SDK is configured via environment variables, which are loaded from a .env file in your project's root directory.

Variable Default Value Description
NEO4J_URI bolt://localhost:7687 The URI for your Neo4j database.
NEO4J_USER neo4j The username for your Neo4j database.
NEO4J_PASSWORD password The password for your Neo4j database.
QDRANT_URL http://localhost:6333 The URL for your Qdrant vector database instance.
QDRANT_API_KEY None Optional: The API key for authenticating with your Qdrant instance.
QDRANT_CHUNKS_COLLECTION chunks The name of the collection for storing graph chunks.
QDRANT_COMMUNITIES_COLLECTION communities The name of the collection for storing community summaries.
EMBEDDER_URL http://localhost:8080 The URL of the text embedding service. It must accept a POST request with {"inputs": ["text"]}.
VECTOR_SIZE 384 The dimension of the vectors produced by your embedding model.
LOGLEVEL INFO The logging level for the SDK (DEBUG, INFO, WARNING, ERROR).

Example .env file:

# Neo4j Database Credentials
NEO4J_URI="bolt://localhost:7687"
NEO4J_USER="neo4j"
NEO4J_PASSWORD="your_secure_password"

# Qdrant Vector Database URL
QDRANT_URL="http://localhost:6333"
QDRANT_API_KEY="your_qdrant_api_key" # Optional
QDRANT_CHUNKS_COLLECTION="chunks"
QDRANT_COMMUNITIES_COLLECTION="communities"

# Text Embedding Model URL
EMBEDDER_URL="http://localhost:8080/embed"

3. Usage

Initializing the Client

The main entry point is the GraphRetrievalClient. It automatically loads settings from your .env file.

from graph_retrieval_sdk.client import GraphRetrievalClient

# Initialize the client
client = GraphRetrievalClient()

Indexing the Graph

The index() method runs the full, idempotent pipeline to populate Qdrant with your graph data.

# This runs the full pipeline:
# 1. Community detection
# 2. Chunk creation
# 3. Chunk and Community indexing
client.index()

print("Indexing complete!")

To completely reset your vector index, use the clear_index() method. Warning: This is a destructive operation that deletes and recreates the Qdrant collections.

client.clear_index()

Retrieving a Subgraph

Use the retrieve_graph() method to query your indexed graph. The RetrievalConfig model allows for fine-grained control over the process.

Basic Retrieval

from graph_retrieval_sdk.models import RetrievalConfig
import json

query = "Who was the emperor of Rome?"
config = RetrievalConfig()

subgraph = client.retriever.retrieve_graph(query, config)

if subgraph:
    print(f"Retrieved {len(subgraph[0]['nodes'])} nodes and {len(subgraph[0]['relationships'])} relationships.")

Advanced Retrieval with Graph Expansion Control

Customize the RetrievalConfig to tune the retrieval and expansion behavior.

from graph_retrieval_sdk.models import RetrievalConfig

query = "Tell me about the Roman emperors and their families, but exclude servants."

advanced_config = RetrievalConfig(
    # --- Retrieval Settings ---
    max_communities=5,
    max_chunks=15,

    # --- Graph Expansion Settings ---
    max_hops=2,
    community_expansion_limit=5,

    # --- Relationship Filtering ---
    allowed_rel_types=["HAS_SON", "MARRIED_TO", "SUCCESSOR_OF"],
    denied_rel_types=["HAS_SERVANT"]
)

subgraph = client.retriever.retrieve_graph(query, advanced_config)

if subgraph:
    print(f"Retrieved {len(subgraph[0]['nodes'])} nodes with advanced configuration.")

# Close the client connection when done
client.close()

4. Project Structure

The project is organized as a standard Python package:

├── graph_retrieval_sdk/
│   ├── __init__.py
│   ├── client.py         # Main client class
│   ├── config.py         # Configuration and logging setup
│   ├── indexer.py        # Logic for indexing the graph
│   ├── retriever.py      # Logic for retrieving subgraphs
│   └── models.py         # Pydantic models (e.g., RetrievalConfig)
├── examples/
│   ├── retrieve_graph.py
│   └── run_indexing.py
├── pyproject.toml        # Project metadata and dependencies
└── README.md             # This file

5. Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue.

6. License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_graph_retriever-1.0.0rc9.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_graph_retriever-1.0.0rc9-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file simple_graph_retriever-1.0.0rc9.tar.gz.

File metadata

File hashes

Hashes for simple_graph_retriever-1.0.0rc9.tar.gz
Algorithm Hash digest
SHA256 49aae8d236d15e35e9f79aeb7a431725267a69fa16fff09392c7603e3a016566
MD5 30539826f13d1de09831a9e71f3e9b83
BLAKE2b-256 b0f07e18d0bfbb4fb3102aea39bc005edab389245d04e2ee58adc1f86a7a2e8a

See more details on using hashes here.

File details

Details for the file simple_graph_retriever-1.0.0rc9-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_graph_retriever-1.0.0rc9-py3-none-any.whl
Algorithm Hash digest
SHA256 e778f870421f27e4dbd847e3e15cfc8fc1073aa4ca61cbb94c041c4627da60da
MD5 e5be8cfb88ff2e1c97c82a26bfff2a19
BLAKE2b-256 859af3d07f4018dd6d03602e4fc4edaa7686efc28a4e8dfd93163dcda9093e98

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page