- Langchain Python AI Graph RAG
- Neo4j for GraphDB
- Cypher for queries
- Neo4j GraphDB RAG is an AI-based content interpretation and search capability. Using LLMs, it parses data to create a knowledge graph and answer user questions about a user-provided private dataset
- Query: Which actors have acted in the most movies?
- Query:
MATCH (n:Genre) RETURN n LIMIT 25;
- Query:
MATCH p=()-[:IN_GENRE]->() RETURN p LIMIT 25;
1. Clone this repo to your folder:
git clone THIS REPO
2. Create a virtual environment
3. Install the dependencies
pip install -r requirements.txt
Extrawest.com, 2024