Skip to content

extrawest/neo4j_graph_db_example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LangChain Neo4j GraphDB Example

Maintenance Maintaner Ask Me Anything ! License

PROJECT INFO

  • Langchain Python AI Graph RAG
  • Neo4j for GraphDB
  • Cypher for queries

Features

  • 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

Demo

  1. Query: Which actors have acted in the most movies?

Output: neo4j_graphdb

  1. Query:
MATCH (n:Genre) RETURN n LIMIT 25;

Output: visualisation (1)

  1. Query:
MATCH p=()-[:IN_GENRE]->() RETURN p LIMIT 25;

Output: visualisation (2)

Installing:

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

Releases

No releases published

Packages

No packages published

Languages