8 releases

new 0.2.4 Feb 10, 2025
0.2.3 Jan 27, 2025
0.2.1 Dec 19, 2024
0.1.2 Nov 13, 2024

#134 in Science

Download history 194/week @ 2024-11-03 132/week @ 2024-11-10 29/week @ 2024-11-17 2/week @ 2024-11-24 156/week @ 2024-12-01 18/week @ 2024-12-08 153/week @ 2024-12-15 5/week @ 2024-12-22 5/week @ 2025-01-05 114/week @ 2025-01-12 15/week @ 2025-01-19 111/week @ 2025-01-26 29/week @ 2025-02-02 116/week @ 2025-02-09

275 downloads per month

MIT license

555KB
11K SLoC

Rig logo + Neo4j logo



This companion crate implements a Rig vector store based on Neo4j Graph database. It uses the neo4rs crate to interact with Neo4j. Note that the neo4rs crate is a work in progress and does not yet support all Neo4j features. Further documentation on Neo4j & vector search integration can be found on the neo4rs docs.

Prerequisites

The GenAI plugin is enabled by default in Neo4j Aura.

The plugin needs to be installed on self-managed instances. This is done by moving the neo4j-genai.jar file from /products to /plugins in the Neo4j home directory, or, if you are using Docker, by starting the Docker container with the extra parameter --env NEO4J_PLUGINS='["genai"]'. For more information, see Operations Manual → Configure plugins.

Usage

Add the companion crate to your Cargo.toml, along with the rig-core crate:

[dependencies]
rig-neo4j = "0.1"

You can also run cargo add rig-neo4j rig-core to add the most recent versions of the dependencies to your project.

See the examples folder for usage examples.

Notes

  • The rig-neo4j::vector_index module offers utility functions to create and query a Neo4j vector index. You can also create indexes using the Neo4j browser or directly call cypther queries with the Neo4rs crate. See the Neo4j documentation for more information. Example examples/vector_search_simple.rs shows how to create an index on existing data.
CREATE VECTOR INDEX moviePlots
FOR (m:Movie)
ON m.embedding
OPTIONS {indexConfig: {
    `vector.dimensions`: 1536,
    `vector.similarity_function`: 'cosine'
}}

Roadmap

  • Add support for creating the vector index through RIG.
  • Add support for adding embeddings to an existing database
  • Add support for uploading documents to an existing database

Dependencies

~18–31MB
~565K SLoC