orchid-rag-neo4j
Neo4j graph-store plugin for knowledge-graph RAG.
orchid-rag-neo4j is the Neo4j graph-store plugin for the Orchid AI framework. It provides Neo4jGraphStore backed by the Python Neo4j driver, auto-registering via Python entry points.
Installation
pip install orchid-ai orchid-rag-neo4jWhat It Provides
| Component | Class | Purpose |
|---|---|---|
| Graph store | Neo4jGraphStore | Full OrchidGraphStore implementation with Cypher queries |
Auto-Registration
[project.entry-points."orchid.graph_store_backends"]
neo4j = "orchid_rag_neo4j:_register"Configuration
rag:
graph_backend: neo4j
neo4j_uri: bolt://localhost:7687
neo4j_user: neo4j
neo4j_password: ${NEO4J_PASSWORD}