Skip to main content

Python package to allow easy integration to Neo4j's GraphRAG features

Project description

Neo4j GraphRAG package for Python

This repository contains the official Neo4j GraphRAG features for Python.

The purpose of this package is to provide a first party package to developers, where Neo4j can guarantee long term commitment and maintenance as well as being fast to ship new features and high performing patterns and methods.

Documentation: https://neo4j.com/docs/neo4j-graphrag-python/

Python versions supported:

  • Python 3.12 supported.
  • Python 3.11 supported.
  • Python 3.10 supported.
  • Python 3.9 supported.
  • Python 3.8 supported.

Usage

Installation

This package requires Python (>=3.8.1).

To install the latest stable version, use:

pip install neo4j-graphrag

Optional dependencies

pygraphviz

pygraphviz is used for visualizing pipelines. Follow installation instructions here.

Examples

Creating a vector index

When creating a vector index, make sure you match the number of dimensions in the index with the number of dimensions the embeddings have.

Assumption: Neo4j running

from neo4j import GraphDatabase
from neo4j_graphrag.indexes import create_vector_index

URI = "neo4j://localhost:7687"
AUTH = ("neo4j", "password")

INDEX_NAME = "vector-index-name"

# Connect to Neo4j database
driver = GraphDatabase.driver(URI, auth=AUTH)

# Creating the index
create_vector_index(
    driver,
    INDEX_NAME,
    label="Document",
    embedding_property="vectorProperty",
    dimensions=1536,
    similarity_fn="euclidean",
)

Populating the Neo4j Vector Index

Note that the below example is not the only way you can upsert data into your Neo4j database. For example, you could also leverage the Neo4j Python driver.

Assumption: Neo4j running with a defined vector index

from neo4j import GraphDatabase
from neo4j_graphrag.indexes import upsert_vector

URI = "neo4j://localhost:7687"
AUTH = ("neo4j", "password")

# Connect to Neo4j database
driver = GraphDatabase.driver(URI, auth=AUTH)

# Upsert the vector
vector = ...
upsert_vector(
    driver,
    node_id=1,
    embedding_property="vectorProperty",
    vector=vector,
)

Performing a similarity search

Assumption: Neo4j running with populated vector index in place.

Limitation: The query over the vector index is an approximate nearest neighbor search and may not give exact results. See this reference for more details.

While the library has more retrievers than shown here, the following examples should be able to get you started.

In the following example, we use a simple vector search as retriever, that will perform a similarity search over the index-name vector index in Neo4j.

from neo4j import GraphDatabase
from neo4j_graphrag.retrievers import VectorRetriever
from neo4j_graphrag.llm import OpenAILLM
from neo4j_graphrag.generation import GraphRAG
from neo4j_graphrag.embeddings.openai import OpenAIEmbeddings

URI = "neo4j://localhost:7687"
AUTH = ("neo4j", "password")

INDEX_NAME = "vector-index-name"

# Connect to Neo4j database
driver = GraphDatabase.driver(URI, auth=AUTH)

# Create Embedder object
embedder = OpenAIEmbeddings(model="text-embedding-3-large")

# Initialize the retriever
retriever = VectorRetriever(driver, INDEX_NAME, embedder)

# Initialize the LLM
# Note: An OPENAI_API_KEY environment variable is required here
llm = OpenAILLM(model_name="gpt-4o", model_params={"temperature": 0})

# Initialize the RAG pipeline
rag = GraphRAG(retriever=retriever, llm=llm)

# Query the graph
query_text = "How do I do similarity search in Neo4j?"
response = rag.search(query_text=query_text, retriever_config={"top_k": 5})
print(response.answer)

Development

Install dependencies

poetry install

Getting started

Issues

If you have a bug to report or feature to request, first search to see if an issue already exists. If a related issue doesn't exist, please raise a new issue using the relevant issue form.

If you're a Neo4j Enterprise customer, you can also reach out to Customer Support.

If you don't have a bug to report or feature request, but you need a hand with the library; community support is available via Neo4j Online Community and/or Discord.

Make changes

  1. Fork the repository.
  2. Install Python and Poetry.
  3. Create a working branch from main and start with your changes!

Pull request

When you're finished with your changes, create a pull request, also known as a PR.

  • Ensure that you have signed the CLA.
  • Ensure that the base of your PR is set to main.
  • Don't forget to link your PR to an issue if you are solving one.
  • Enable the checkbox to allow maintainer edits so that maintainers can make any necessary tweaks and update your branch for merge.
  • Reviewers may ask for changes to be made before a PR can be merged, either using suggested changes or normal pull request comments. You can apply suggested changes directly through the UI, and any other changes can be made in your fork and committed to the PR branch.
  • As you update your PR and apply changes, mark each conversation as resolved.
  • Update the CHANGELOG.md if you have made significant changes to the project, these include:
    • Major changes:
      • New features
      • Bug fixes with high impact
      • Breaking changes
    • Minor changes:
      • Documentation improvements
      • Code refactoring without functional impact
      • Minor bug fixes
  • Keep CHANGELOG.md changes brief and focus on the most important changes.

Updating the CHANGELOG.md

  1. When opening a PR, you can generate an edit suggestion by commenting on the GitHub PR using CodiumAI:
@CodiumAI-Agent /update_changelog
  1. Use this as a suggestion and update the CHANGELOG.md content under 'Next'.
  2. Commit the changes.

Run tests

Unit tests

This should run out of the box once the dependencies are installed.

poetry run pytest tests/unit

E2E tests

To run e2e tests you'd need to have some services running locally:

  • neo4j
  • weaviate
  • weaviate-text2vec-transformers

The easiest way to get it up and running is via Docker compose:

docker compose -f tests/e2e/docker-compose.yml up

(pro tip: if you suspect something in the databases are cached, run docker compose -f tests/e2e/docker-compose.yml down to remove them completely)

Once the services are running, execute the following command to run the e2e tests.

poetry run pytest tests/e2e

Further information

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

neo4j_graphrag-0.6.3.tar.gz (54.7 kB view details)

Uploaded Source

Built Distribution

neo4j_graphrag-0.6.3-py3-none-any.whl (94.2 kB view details)

Uploaded Python 3

File details

Details for the file neo4j_graphrag-0.6.3.tar.gz.

File metadata

  • Download URL: neo4j_graphrag-0.6.3.tar.gz
  • Upload date:
  • Size: 54.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for neo4j_graphrag-0.6.3.tar.gz
Algorithm Hash digest
SHA256 b55c4224c79c366859bafd1c155df3a05824682dac5606663f4e3b501920a35a
MD5 92436541fce042a20c85698ab81b7aab
BLAKE2b-256 bf04a2ee4d5b6dec03e0689420cf4f8927d69e6309e3ab97e3a5592413fe7c52

See more details on using hashes here.

File details

Details for the file neo4j_graphrag-0.6.3-py3-none-any.whl.

File metadata

File hashes

Hashes for neo4j_graphrag-0.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 21c80ab45dcb768a82f180882bbf09a1055cdffe1743c63d5277fb4f4bc0fd89
MD5 24e3bc1700bfe4d924d95606f124b863
BLAKE2b-256 c8a114648966e37bc6f12e70db91c1e4d9661d3eae759f5eff2ca74e2e05d214

See more details on using hashes here.

Supported by

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