SlideShare a Scribd company logo
Neo4j and Generative AI:
New Frontiers in Data
Intelligence
Malaysia GraphTalk-Monday 14th October
Bryan Lee, Professional Services Architect
2 Neo4j Inc. All rights reserved 2024
● Located in Singapore
● Neo4j Professional
Services Team
● Helping customers
achieve success
throughout their Neo4j
journey
Agenda
● Current State of GenAI
● Why RAG?
● Can Knowledge Graph help?
● Why GraphRAG? Why RAG?
● GenAI Use Cases
● LLM Graph Builder Demo
Neo4j Inc. All rights reserved 2024
3
The State of Generative AI
Neo4j Inc. All rights reserved 2024
4
The Good 󰙤
The State of Generative AI
Neo4j Inc. All rights reserved 2024
5
6
AI
Breakthroughs
Personalization at Scale
Enhance Decision-Making
Process Optimization
Boost Creativity
Predictive Analytics
Improve Data Retrieval
and Automation
Generate Content and Code
Improve Customer Experiences
Neo4j Inc. All rights reserved 2024
The Good 󰙤
The State of Generative AI
7 Neo4j Inc. All rights reserved 2024
The Good 󰙤
The State of Generative AI
The Bad 󰗭
8 Neo4j Inc. All rights reserved 2024
The Good 󰙤
The State of Generative AI
The Bad 󰗭
9
The Good 󰙤 The Bad 󰗭
The State of Generative AI
The Ugly 😱
10 Neo4j Inc. All rights reserved 2024
The State of Generative AI
The Good 󰙤 The Bad 󰗭 The Ugly 😱
GenAI Alone != Right Outcomes 🤯
11 Neo4j Inc. All rights reserved 2024
Challenges with GenAI: Stochastic Parrot?
● Lack of enterprise domain knowledge
● Inability to verify answers
● Hallucination
● Ethical and data bias concerns
● and more
12 Neo4j Inc. All rights reserved 2024
GenAI
PARROT
13
Managing AI risk
is the biggest
barrier to scaling
AI initiatives1
Skepticism: Over half of business leaders are
skeptical in adopting GenAI.2
Neo4j Inc. All rights reserved 2024
Explainability: Over 80% of executives worry
about non-transparent nature of GenAI could
result in poor or unlawful decisions.2
Reliability: Inaccuracy and hallucination are two
of the most-cited risks of adopting GenAI
technology at all levels of an organisation.3
1. Deloitte’s State of AI in the Enterprise 2. BCG’s Digital Acceleration Index Study 2023 3. McKinsey: The state of AI in 2023
14 Neo4j Inc. All rights reserved 2024
How can organizations use
domain-specific knowledge
to rapidly build accurate,
contextual, and explainable
GenAI applications?
The Big
Question
Why RAG?
And what is it anyway…
15 Neo4j Inc. All rights reserved 2024
Retrieval Augmented Generation:
The ability to dynamically query a large
text corpus to incorporate relevant factual
knowledge into the responses generated
by the underlying language model
16 Neo4j Inc. All rights reserved 2024
Retrieval-Augmented Generation Is Becoming
an Industry Standard
RAG augments LLMs by retrieving
up-to-date, contextual external data
to inform responses:
● Reduce hallucinations with
verified data
●
Provide domain-specific,
relevant responses
●
Enable traceability back
to sources
Retrieval Augmented Generation
Database of Truth
17 Neo4j Inc. All rights reserved 2024
Why RAG With Vector Databases Fall Short
1
3
2
4
Similarity is insufficient for rich enterprise reasoning
Only leverage a fraction of
your data: Beyond simple
“metadata”, vector databases
alone fail to capture relationships
from structured data
Miss critical context: Struggle to
capture connections across
nuanced facts, making it
challenging to answer multi-step,
domain-specific, questions
Vector Similarity ≠ Relevance:
Vector search uses an incomplete
measure of similarity. Relying on it
solely can result in irrelevant and
duplicative results
Lack explainability:
The black-box nature of
vectors lacks transparency
and explainability
18 Neo4j Inc. All rights reserved 2024
Why GraphRAG? Why RAG?
And what is it anyway…
19 Neo4j Inc. All rights reserved 2024
GraphRAG
Technique for richly
understanding text datasets
by combining text extraction,
network analysis, LLM
prompting and summarization
into a single end-to-end
system
Neo4j Inc. All rights reserved 2024
20
Neo4j Inc. All rights reserved 2024
21
RAG with Neo4j
Find similar documents
and content
Identify entities associated
to content and patterns
in connected data
Improve GenAI inferences
and insights. Discover new
relationships and entities
Unify vector search, knowledge graph and data science
capabilities to improve RAG quality and effectiveness
Vector Search
Graph Data
Science
Knowledge
Graph
Elevate relevance with domain
context and inferences
Accelerate GenAI
application development
Build your next
GenAI breakthrough
with context and
deep explainability
Explain and improve
GenAI applications
Neo4j is the GenAI Enabler
22 Neo4j Inc. All rights reserved 2024
Elevate Relevance with Domain
Context and Inferences
Improve context with facts from a knowledge graph
Enhance personalization and quality
using graph pattern matching
Expand insights and inferences using
graph data science and machine learning
23 Neo4j Inc. All rights reserved 2024
24 Neo4j Inc. All rights reserved 2024
Improve Context
with Facts from a
Knowledge Graph
Combine native vector search with
multi-hop graph traversals to add
domain-specific context from a
knowledge graph
Incorporate hybrid retrieval, including
text search and lookups based off date,
numeric, and geopoint indexes
25 Neo4j Inc. All rights reserved 2024
LLM
Application
User
Neo4j Database
5. Answer provided
1. Asks question
2. Question is translated to
a Cypher statement
4. Result from database is
converted to natural language
3. Generated
Cypher is used
to query Neo4j
database
Improve Context
with Facts from a
Knowledge Graph
Combine native vector search with
multi-hop graph traversals to add
domain-specific context from a
knowledge graph
Convert user questions to Cypher
queries to perform RAG with explicit
query logic
Incorporate hybrid retrieval, including
text search and lookups based off date,
numeric, and geopoint indexes
26 Neo4j Inc. All rights reserved 2024
Improve Context
with Facts from a
Knowledge Graph
Combine native vector search with
multi-hop graph traversals to add
domain-specific context from a
knowledge graph
Convert user questions to Cypher
queries to perform RAG with explicit
query logic
Incorporate hybrid retrieval, including
text search and lookups based off date,
numeric, and geopoint indexes
Unified Copilot Service Layer
Including Text2Cypher
data
importer
Customer
applications
27 Neo4j Inc. All rights reserved 2024
Use graph patterns to rank and
score vector search results
based on domain knowledge
Retrieve more refined results
to power better personalized
LLM Responses
from langchain.vectorstores.neo4j_vector import
Neo4jVector
kg_personalized_search =
Neo4jVector.from_existing_index(
embedding=embedding_model,
url=NEO4J_URI,username=NEO4J_USERNAME,password=NEO4J_PA
SSWORD,
index_name='product-text-embeddings',
retrieval_query=f"""
WITH node AS product, score AS vectorSearchScore
OPTIONAL MATCH
(product) [:VARIANT_OF]-(:Article) [:PURCHASED]-
(:Customer)-[:PURCHASED] (a:Article) [:PURCHASED]-
(:Customer {{customerId: ' {CUSTOMER_ID }'}})
WITH count(a) AS purchaseScore,
RETURN
""")
Enhance
Personalization
and Quality
Expand Insights and
Inferences Using
Data Science and ML
Neo4j Inc. All rights reserved 2024
28
Quickly incorporate context from
structured data in RAG vector search
using Neo4j graph embeddings with a
native vector index
Deeper insights for AI by enriching
your knowledge graph with link
prediction, community detection, and
classification using graph algorithms
and machine learning
Largest Catalog of Graph
Algorithms
Native Graph
Analytics Workspace
Graph Embeddings for
Enhanced Retrieval
29
Explain and Improve GenAI Applications
Easily trace sources and explain retrieval logic
Understand and explain patterns in AI grounding
Improve GenAI grounding data at scale
Neo4j Inc. All rights reserved 2024
Easily Trace
Sources
Neo4j Inc. All rights reserved 2023
30
Add citation metadata
to nodes and relationships
within the knowledge graph
Enable source citation in
LLM responses by
integrating with
frameworks like LangChain
and LlamaIndex
Explain
Retrieval Logic
Neo4j Inc. All rights reserved 2024
31
Inspect and explain retrieval
logic by converting user
questions to explicit Cypher
queries that are human-
readable and traceable
32 Neo4j Inc. All rights reserved 2024
Understand and Explain
Patterns in AI Grounding
Easily understand grounding data
by representing it in a Neo4j knowledge
graph-both a human-friendly and
machine/GenAI-readable format
Introspect and visualize connections
between data using Cypher queries
and low-code/no-code interfaces like
Neo4j Bloom
Analyze patterns in grounding data
using graph algorithms like KNN,
community detection and centrality to
understand semantic similarities and
connections between sources
33 Neo4j Inc. All rights reserved 2024
Improve GenAI
Grounding Data at Scale
Improve data quality using Cypher and
graph algorithms for duplicate
identification, outlier detection, and
revealing trends and biases
Assess LLM performance and usage
patterns to identify areas of improvement
–analyze the connections between
prompts, responses, and grounding data
using Cypher and graph algorithms
34
Power your AI applications with robust and dynamic data representation
Rapidly build a knowledge graph for AI use cases
Integrate with the GenAI ecosystem
Accelerate GenAI Application Development
34 Neo4j Inc. All rights reserved 2024
Empower your AI projects
with Robust and Dynamic
Data Representation
35 Neo4j Inc. All rights reserved 2024
Harness all your data in one place with a
property graph data model, including
vector storage and search capabilities
Future-proof with an adaptable,
dev-friendly schema to add new data
types and entities, while maintaining data
quality
Enable real-time data ingestion into Neo4j
for immediate use in GenAI apps, with
streaming support via our Kafka Connector
●
Car
●
Person
Person
Name: “Andre”
Born: May 29, 1970
Twitter: “@dan”
Name: “Mica”
Born: Dec 5, 1975
Car
Brand “Volvo”
Model: “V70”
Description: “An executive car manufactured and…”
DescEmbedding: [0.1, -0.3, 0.4, …, -0.7]
DescSource:”https://en.wikipedia.org/wiki/Volvo_V70”
Since:
Jan 10, 2011
LOVES
KNOWS
KNOWS
LIVES WITH
O
W
N
S
D
R
I
V
E
S
Rapidly Build a
Knowledge Graph
for AI Use Cases
36 Neo4j Inc. All rights reserved 2024
Car
Car
Jumpstart knowledge graph
creation from unstructured
data with named entity
recognition
Rapidly model structured data
as nodes and relationships in a
knowledge graph
Ingest text, audio, and other
content embeddings as node
vector properties and index
them for use in RAG
Embedding (Unstructured)
Structured
Unstructured
Data Sources
Named Entity Recognition
Structured Data
Generative AI Models
Embedding Models
Knowledge Graph
Integrate with the
GenAI Ecosystem
37 Neo4j Inc. All rights reserved 2024
GenAI Stack
Application
Generative AI & Embedding Models
Orchestration
Grounding Knowledge Graph
Neo4jGraph
Neo4jVector
GraphCypherQAChain
Neo4jGraphStore
Neo4jVectorStore
KnowledgeGraphIndex
Neo4j GenAI Integrations
Text | Chat | Embedding
NL Query | Image Gen
Neo4j Drivers
Java
Python JavaScript
Call LLM APIs natively via
Cypher using our GenAI
procedures or open-source
APOC library
Integrate Neo4j with leading LLM
open-source frameworks such as
LangChain and LlamaIndex
Agnostic LLM orchestration
connecting graphs to OpenAI,
AWS Bedrock, GCP Vertex AI,
Azure, Anthropic, Hugging Face,
and other proprietary and open
source foundation models
Neo4j Inc. All rights reserved 2024
38
Summary
Elevate relevance with domain
context and inferences
Accelerate GenAI application
development
Explain and improve GenAI
applications
GenAI - Use Cases
Neo4j Inc. All rights reserved 2024
40
Challenge: Global Retailer wants to retain and
grow talent, but finding the right new opportunity
is in the hands of the associate. This is a time
consuming and often limiting approach because
the current system forces the associate to search
and browse roles without visibility into all the
options and without knowledge about how roles
and skills come together
Solution: Build a career opportunity
recommendation system based on where
associates live, work today, their skills,
and past work experience
Impact: Engage associates at all levels of their
career path and guide them to their best next
position. Proactively recruit candidates for
promotion based on their attributes
Roles
(Email, Custom Cards)
Associate
Global Retail Giant uses LLM with Knowledge Graph
to Recommend the Best Opportunities
Neo4j Inc. All rights reserved 2024
41
Investment Bank Summarizes Quarterly Earnings
Reports Across Companies
Challenge: Investment bankers need a
quick way to understand the detail of
quarterly reporting across all the
companies in their portfolios, but data is
stored in multiple formats and locations
Solution: Use vector embeddings to look
for the most relevant information, while
the Neo4j knowledge graph adds the
exact match for financial statements
Impact: Quickly review quarterly reports
across companies
Investment Banker
Prompt
LLM
Embeddings API
Vector Search in
Vector Index
Embedding
Relevant Results /
Documents
Knowledge graph of
financial statements
LLM
Chat API
Response
Neo4j Inc. All rights reserved 2023
42
Pharmaceutical Company Democratize Access to
Supply Chain Risk Analysis
Challenge: Supply Chain risk analysis
knowledge graph was accessible only by 300
experts familiar with graph analysis. They
wanted to open up these insights to
thousands more employees
Solution: Conversational AI solution to allow
natural language access to supply chain KG.
Any employee can ask a question in plain
english. It gets converted into Cypher query
that can pull relevant risk assessment data
from the graph. The query results get passed
back into natural language generator to
create an an easy to understand response to
the initial question
Impact: Democratize access to supply chain
risk analysis
Supply Chain
Knowledge
Graph
Prompt (Description of
Desired Products)
Cypher Query
Relevant Results
Employee
LLM API
LLM API
Response
Neo4j Inc. All rights reserved 2023
43
Government Procurement Entity Automates
Complex Processes
Challenge: Government entities can overspend
or acquire goods and services redundantly
because the volume of RFPs makes reviewing
each of them resource prohibitive
Solution: Use LLM to read the nature of RFP
and classify it accordingly. Compare the new
RFP against the knowledge graph of active
and historic RFPs and associated spend.
Recommend opportunities for consolidation or
terms negotiation with suppliers
Impact: Save tax dollars for other important
projects
Predefined Prompt with
Results
LLM API
Generates personalized
text
User is Emailed with
Recommendation
Procurement Officer
Supplier
LLM API Categorizes
RFP
Enterprise App
Ingests New RFP
Knowledge
graph of RFPs
and spending
patterns
44 Neo4j Inc. All rights reserved 2024
FREE to use and test:
https://llm-graph-builder.neo4jlabs.com/
Github:
https://github.com/neo4j-labs/llm-graph-
builder
LLM Graph
Builder
Demo!
Thank you
Ad

More Related Content

Similar to Neo4j and Generative AI: New Frontiers in Data Intelligence (20)

Minitab Free crack Download (Latest 2025)
Minitab Free  crack Download (Latest 2025)Minitab Free  crack Download (Latest 2025)
Minitab Free crack Download (Latest 2025)
blouch136kp
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j
 
Neo4j Public Graph Slides - BioTech X Basel 2024
Neo4j Public Graph Slides - BioTech X Basel 2024Neo4j Public Graph Slides - BioTech X Basel 2024
Neo4j Public Graph Slides - BioTech X Basel 2024
paulalopez294850
 
The Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdfThe Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdf
Neo4j
 
The Art of the Possible with Graph by Dr Jim Webber Neo4j.pptx
The Art of the Possible with Graph by Dr Jim Webber Neo4j.pptxThe Art of the Possible with Graph by Dr Jim Webber Neo4j.pptx
The Art of the Possible with Graph by Dr Jim Webber Neo4j.pptx
Neo4j
 
Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Workshop -  Architecting Innovative Graph Applications- GraphSummit MilanWorkshop -  Architecting Innovative Graph Applications- GraphSummit Milan
Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Neo4j
 
Deeper Insights with Graph Data Science
Deeper Insights with Graph Data ScienceDeeper Insights with Graph Data Science
Deeper Insights with Graph Data Science
Neo4j
 
La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...
Neo4j
 
Adobe Substance 3D Designer 14.1.2.8986
Adobe Substance 3D  Designer  14.1.2.8986Adobe Substance 3D  Designer  14.1.2.8986
Adobe Substance 3D Designer 14.1.2.8986
alihamzakpa070
 
The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...
The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...
The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...
Neo4j
 
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Neo4j
 
El Arte de lo Possible
El Arte de lo PossibleEl Arte de lo Possible
El Arte de lo Possible
Neo4j
 
The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...
Neo4j
 
Graphs for Government - Enhancing Public Services in the Age of AI
Graphs for Government - Enhancing Public Services in the Age of AIGraphs for Government - Enhancing Public Services in the Age of AI
Graphs for Government - Enhancing Public Services in the Age of AI
Neo4j
 
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptxGraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
Neo4j
 
apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...
apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...
apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...
apidays
 
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j
 
The path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data ScienceThe path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data Science
Neo4j
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Internet Download Manager (IDM) Free crack
Internet Download Manager (IDM) Free crackInternet Download Manager (IDM) Free crack
Internet Download Manager (IDM) Free crack
alihamzakpa070
 
Minitab Free crack Download (Latest 2025)
Minitab Free  crack Download (Latest 2025)Minitab Free  crack Download (Latest 2025)
Minitab Free crack Download (Latest 2025)
blouch136kp
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j
 
Neo4j Public Graph Slides - BioTech X Basel 2024
Neo4j Public Graph Slides - BioTech X Basel 2024Neo4j Public Graph Slides - BioTech X Basel 2024
Neo4j Public Graph Slides - BioTech X Basel 2024
paulalopez294850
 
The Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdfThe Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdf
Neo4j
 
The Art of the Possible with Graph by Dr Jim Webber Neo4j.pptx
The Art of the Possible with Graph by Dr Jim Webber Neo4j.pptxThe Art of the Possible with Graph by Dr Jim Webber Neo4j.pptx
The Art of the Possible with Graph by Dr Jim Webber Neo4j.pptx
Neo4j
 
Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Workshop -  Architecting Innovative Graph Applications- GraphSummit MilanWorkshop -  Architecting Innovative Graph Applications- GraphSummit Milan
Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Neo4j
 
Deeper Insights with Graph Data Science
Deeper Insights with Graph Data ScienceDeeper Insights with Graph Data Science
Deeper Insights with Graph Data Science
Neo4j
 
La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...
Neo4j
 
Adobe Substance 3D Designer 14.1.2.8986
Adobe Substance 3D  Designer  14.1.2.8986Adobe Substance 3D  Designer  14.1.2.8986
Adobe Substance 3D Designer 14.1.2.8986
alihamzakpa070
 
The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...
The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...
The Art of the Possible with Graph - Sudhir Hasbe - GraphSummit London 14 Nov...
Neo4j
 
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Neo4j
 
El Arte de lo Possible
El Arte de lo PossibleEl Arte de lo Possible
El Arte de lo Possible
Neo4j
 
The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...
Neo4j
 
Graphs for Government - Enhancing Public Services in the Age of AI
Graphs for Government - Enhancing Public Services in the Age of AIGraphs for Government - Enhancing Public Services in the Age of AI
Graphs for Government - Enhancing Public Services in the Age of AI
Neo4j
 
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptxGraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
Neo4j
 
apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...
apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...
apidays Paris 2024 - AI-Enhanced API Documentation Bridging Knowledge Gaps an...
apidays
 
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j
 
The path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data ScienceThe path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data Science
Neo4j
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Internet Download Manager (IDM) Free crack
Internet Download Manager (IDM) Free crackInternet Download Manager (IDM) Free crack
Internet Download Manager (IDM) Free crack
alihamzakpa070
 

More from Neo4j (20)

Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
 
Neo4j Knowledge for Customer Experience.pptx
Neo4j Knowledge for Customer Experience.pptxNeo4j Knowledge for Customer Experience.pptx
Neo4j Knowledge for Customer Experience.pptx
Neo4j
 
GraphTalk New Zealand - The Art of The Possible.pptx
GraphTalk New Zealand - The Art of The Possible.pptxGraphTalk New Zealand - The Art of The Possible.pptx
GraphTalk New Zealand - The Art of The Possible.pptx
Neo4j
 
Neo4j: The Art of the Possible with Graph
Neo4j: The Art of the Possible with GraphNeo4j: The Art of the Possible with Graph
Neo4j: The Art of the Possible with Graph
Neo4j
 
Smarter Knowledge Graphs For Public Sector
Smarter Knowledge Graphs For Public  SectorSmarter Knowledge Graphs For Public  Sector
Smarter Knowledge Graphs For Public Sector
Neo4j
 
GraphRAG and Knowledge Graphs Exploring AI's Future
GraphRAG and Knowledge Graphs Exploring AI's FutureGraphRAG and Knowledge Graphs Exploring AI's Future
GraphRAG and Knowledge Graphs Exploring AI's Future
Neo4j
 
ANZ Presentation: GraphSummit Melbourne 2024
ANZ Presentation: GraphSummit Melbourne 2024ANZ Presentation: GraphSummit Melbourne 2024
ANZ Presentation: GraphSummit Melbourne 2024
Neo4j
 
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Neo4j
 
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Neo4j
 
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Neo4j
 
Démonstration Digital Twin Building Wire Management
Démonstration Digital Twin Building Wire ManagementDémonstration Digital Twin Building Wire Management
Démonstration Digital Twin Building Wire Management
Neo4j
 
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Neo4j
 
Démonstration Supply Chain - GraphTalk Paris
Démonstration Supply Chain - GraphTalk ParisDémonstration Supply Chain - GraphTalk Paris
Démonstration Supply Chain - GraphTalk Paris
Neo4j
 
The Art of Possible - GraphTalk Paris Opening Session
The Art of Possible - GraphTalk Paris Opening SessionThe Art of Possible - GraphTalk Paris Opening Session
The Art of Possible - GraphTalk Paris Opening Session
Neo4j
 
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
How Siemens bolstered supply chain resilience with graph-powered AI insights ...How Siemens bolstered supply chain resilience with graph-powered AI insights ...
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
Neo4j
 
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Neo4j
 
Neo4j Graph Data Modelling Session - GraphTalk
Neo4j Graph Data Modelling Session - GraphTalkNeo4j Graph Data Modelling Session - GraphTalk
Neo4j Graph Data Modelling Session - GraphTalk
Neo4j
 
Neo4j: The Art of Possible with Graph Technology
Neo4j: The Art of Possible with Graph TechnologyNeo4j: The Art of Possible with Graph Technology
Neo4j: The Art of Possible with Graph Technology
Neo4j
 
Astra Zeneca: How KG and GenAI Revolutionise Biopharma and Life Sciences
Astra Zeneca: How KG and GenAI Revolutionise Biopharma and Life SciencesAstra Zeneca: How KG and GenAI Revolutionise Biopharma and Life Sciences
Astra Zeneca: How KG and GenAI Revolutionise Biopharma and Life Sciences
Neo4j
 
Neo4j Product update and new Aura Platform
Neo4j Product update and new Aura PlatformNeo4j Product update and new Aura Platform
Neo4j Product update and new Aura Platform
Neo4j
 
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
 
Neo4j Knowledge for Customer Experience.pptx
Neo4j Knowledge for Customer Experience.pptxNeo4j Knowledge for Customer Experience.pptx
Neo4j Knowledge for Customer Experience.pptx
Neo4j
 
GraphTalk New Zealand - The Art of The Possible.pptx
GraphTalk New Zealand - The Art of The Possible.pptxGraphTalk New Zealand - The Art of The Possible.pptx
GraphTalk New Zealand - The Art of The Possible.pptx
Neo4j
 
Neo4j: The Art of the Possible with Graph
Neo4j: The Art of the Possible with GraphNeo4j: The Art of the Possible with Graph
Neo4j: The Art of the Possible with Graph
Neo4j
 
Smarter Knowledge Graphs For Public Sector
Smarter Knowledge Graphs For Public  SectorSmarter Knowledge Graphs For Public  Sector
Smarter Knowledge Graphs For Public Sector
Neo4j
 
GraphRAG and Knowledge Graphs Exploring AI's Future
GraphRAG and Knowledge Graphs Exploring AI's FutureGraphRAG and Knowledge Graphs Exploring AI's Future
GraphRAG and Knowledge Graphs Exploring AI's Future
Neo4j
 
ANZ Presentation: GraphSummit Melbourne 2024
ANZ Presentation: GraphSummit Melbourne 2024ANZ Presentation: GraphSummit Melbourne 2024
ANZ Presentation: GraphSummit Melbourne 2024
Neo4j
 
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Neo4j
 
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Neo4j
 
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Neo4j
 
Démonstration Digital Twin Building Wire Management
Démonstration Digital Twin Building Wire ManagementDémonstration Digital Twin Building Wire Management
Démonstration Digital Twin Building Wire Management
Neo4j
 
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Neo4j
 
Démonstration Supply Chain - GraphTalk Paris
Démonstration Supply Chain - GraphTalk ParisDémonstration Supply Chain - GraphTalk Paris
Démonstration Supply Chain - GraphTalk Paris
Neo4j
 
The Art of Possible - GraphTalk Paris Opening Session
The Art of Possible - GraphTalk Paris Opening SessionThe Art of Possible - GraphTalk Paris Opening Session
The Art of Possible - GraphTalk Paris Opening Session
Neo4j
 
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
How Siemens bolstered supply chain resilience with graph-powered AI insights ...How Siemens bolstered supply chain resilience with graph-powered AI insights ...
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
Neo4j
 
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Neo4j
 
Neo4j Graph Data Modelling Session - GraphTalk
Neo4j Graph Data Modelling Session - GraphTalkNeo4j Graph Data Modelling Session - GraphTalk
Neo4j Graph Data Modelling Session - GraphTalk
Neo4j
 
Neo4j: The Art of Possible with Graph Technology
Neo4j: The Art of Possible with Graph TechnologyNeo4j: The Art of Possible with Graph Technology
Neo4j: The Art of Possible with Graph Technology
Neo4j
 
Astra Zeneca: How KG and GenAI Revolutionise Biopharma and Life Sciences
Astra Zeneca: How KG and GenAI Revolutionise Biopharma and Life SciencesAstra Zeneca: How KG and GenAI Revolutionise Biopharma and Life Sciences
Astra Zeneca: How KG and GenAI Revolutionise Biopharma and Life Sciences
Neo4j
 
Neo4j Product update and new Aura Platform
Neo4j Product update and new Aura PlatformNeo4j Product update and new Aura Platform
Neo4j Product update and new Aura Platform
Neo4j
 
Ad

Recently uploaded (20)

HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Ad

Neo4j and Generative AI: New Frontiers in Data Intelligence

  • 1. Neo4j and Generative AI: New Frontiers in Data Intelligence Malaysia GraphTalk-Monday 14th October Bryan Lee, Professional Services Architect
  • 2. 2 Neo4j Inc. All rights reserved 2024 ● Located in Singapore ● Neo4j Professional Services Team ● Helping customers achieve success throughout their Neo4j journey
  • 3. Agenda ● Current State of GenAI ● Why RAG? ● Can Knowledge Graph help? ● Why GraphRAG? Why RAG? ● GenAI Use Cases ● LLM Graph Builder Demo Neo4j Inc. All rights reserved 2024 3
  • 4. The State of Generative AI Neo4j Inc. All rights reserved 2024 4
  • 5. The Good 󰙤 The State of Generative AI Neo4j Inc. All rights reserved 2024 5
  • 6. 6 AI Breakthroughs Personalization at Scale Enhance Decision-Making Process Optimization Boost Creativity Predictive Analytics Improve Data Retrieval and Automation Generate Content and Code Improve Customer Experiences Neo4j Inc. All rights reserved 2024
  • 7. The Good 󰙤 The State of Generative AI 7 Neo4j Inc. All rights reserved 2024
  • 8. The Good 󰙤 The State of Generative AI The Bad 󰗭 8 Neo4j Inc. All rights reserved 2024
  • 9. The Good 󰙤 The State of Generative AI The Bad 󰗭 9
  • 10. The Good 󰙤 The Bad 󰗭 The State of Generative AI The Ugly 😱 10 Neo4j Inc. All rights reserved 2024
  • 11. The State of Generative AI The Good 󰙤 The Bad 󰗭 The Ugly 😱 GenAI Alone != Right Outcomes 🤯 11 Neo4j Inc. All rights reserved 2024
  • 12. Challenges with GenAI: Stochastic Parrot? ● Lack of enterprise domain knowledge ● Inability to verify answers ● Hallucination ● Ethical and data bias concerns ● and more 12 Neo4j Inc. All rights reserved 2024 GenAI PARROT
  • 13. 13 Managing AI risk is the biggest barrier to scaling AI initiatives1 Skepticism: Over half of business leaders are skeptical in adopting GenAI.2 Neo4j Inc. All rights reserved 2024 Explainability: Over 80% of executives worry about non-transparent nature of GenAI could result in poor or unlawful decisions.2 Reliability: Inaccuracy and hallucination are two of the most-cited risks of adopting GenAI technology at all levels of an organisation.3 1. Deloitte’s State of AI in the Enterprise 2. BCG’s Digital Acceleration Index Study 2023 3. McKinsey: The state of AI in 2023
  • 14. 14 Neo4j Inc. All rights reserved 2024 How can organizations use domain-specific knowledge to rapidly build accurate, contextual, and explainable GenAI applications? The Big Question
  • 15. Why RAG? And what is it anyway… 15 Neo4j Inc. All rights reserved 2024
  • 16. Retrieval Augmented Generation: The ability to dynamically query a large text corpus to incorporate relevant factual knowledge into the responses generated by the underlying language model 16 Neo4j Inc. All rights reserved 2024
  • 17. Retrieval-Augmented Generation Is Becoming an Industry Standard RAG augments LLMs by retrieving up-to-date, contextual external data to inform responses: ● Reduce hallucinations with verified data ● Provide domain-specific, relevant responses ● Enable traceability back to sources Retrieval Augmented Generation Database of Truth 17 Neo4j Inc. All rights reserved 2024
  • 18. Why RAG With Vector Databases Fall Short 1 3 2 4 Similarity is insufficient for rich enterprise reasoning Only leverage a fraction of your data: Beyond simple “metadata”, vector databases alone fail to capture relationships from structured data Miss critical context: Struggle to capture connections across nuanced facts, making it challenging to answer multi-step, domain-specific, questions Vector Similarity ≠ Relevance: Vector search uses an incomplete measure of similarity. Relying on it solely can result in irrelevant and duplicative results Lack explainability: The black-box nature of vectors lacks transparency and explainability 18 Neo4j Inc. All rights reserved 2024
  • 19. Why GraphRAG? Why RAG? And what is it anyway… 19 Neo4j Inc. All rights reserved 2024
  • 20. GraphRAG Technique for richly understanding text datasets by combining text extraction, network analysis, LLM prompting and summarization into a single end-to-end system Neo4j Inc. All rights reserved 2024 20
  • 21. Neo4j Inc. All rights reserved 2024 21 RAG with Neo4j Find similar documents and content Identify entities associated to content and patterns in connected data Improve GenAI inferences and insights. Discover new relationships and entities Unify vector search, knowledge graph and data science capabilities to improve RAG quality and effectiveness Vector Search Graph Data Science Knowledge Graph
  • 22. Elevate relevance with domain context and inferences Accelerate GenAI application development Build your next GenAI breakthrough with context and deep explainability Explain and improve GenAI applications Neo4j is the GenAI Enabler 22 Neo4j Inc. All rights reserved 2024
  • 23. Elevate Relevance with Domain Context and Inferences Improve context with facts from a knowledge graph Enhance personalization and quality using graph pattern matching Expand insights and inferences using graph data science and machine learning 23 Neo4j Inc. All rights reserved 2024
  • 24. 24 Neo4j Inc. All rights reserved 2024 Improve Context with Facts from a Knowledge Graph Combine native vector search with multi-hop graph traversals to add domain-specific context from a knowledge graph Incorporate hybrid retrieval, including text search and lookups based off date, numeric, and geopoint indexes
  • 25. 25 Neo4j Inc. All rights reserved 2024 LLM Application User Neo4j Database 5. Answer provided 1. Asks question 2. Question is translated to a Cypher statement 4. Result from database is converted to natural language 3. Generated Cypher is used to query Neo4j database Improve Context with Facts from a Knowledge Graph Combine native vector search with multi-hop graph traversals to add domain-specific context from a knowledge graph Convert user questions to Cypher queries to perform RAG with explicit query logic Incorporate hybrid retrieval, including text search and lookups based off date, numeric, and geopoint indexes
  • 26. 26 Neo4j Inc. All rights reserved 2024 Improve Context with Facts from a Knowledge Graph Combine native vector search with multi-hop graph traversals to add domain-specific context from a knowledge graph Convert user questions to Cypher queries to perform RAG with explicit query logic Incorporate hybrid retrieval, including text search and lookups based off date, numeric, and geopoint indexes Unified Copilot Service Layer Including Text2Cypher data importer Customer applications
  • 27. 27 Neo4j Inc. All rights reserved 2024 Use graph patterns to rank and score vector search results based on domain knowledge Retrieve more refined results to power better personalized LLM Responses from langchain.vectorstores.neo4j_vector import Neo4jVector kg_personalized_search = Neo4jVector.from_existing_index( embedding=embedding_model, url=NEO4J_URI,username=NEO4J_USERNAME,password=NEO4J_PA SSWORD, index_name='product-text-embeddings', retrieval_query=f""" WITH node AS product, score AS vectorSearchScore OPTIONAL MATCH (product) [:VARIANT_OF]-(:Article) [:PURCHASED]- (:Customer)-[:PURCHASED] (a:Article) [:PURCHASED]- (:Customer {{customerId: ' {CUSTOMER_ID }'}}) WITH count(a) AS purchaseScore, RETURN """) Enhance Personalization and Quality
  • 28. Expand Insights and Inferences Using Data Science and ML Neo4j Inc. All rights reserved 2024 28 Quickly incorporate context from structured data in RAG vector search using Neo4j graph embeddings with a native vector index Deeper insights for AI by enriching your knowledge graph with link prediction, community detection, and classification using graph algorithms and machine learning Largest Catalog of Graph Algorithms Native Graph Analytics Workspace Graph Embeddings for Enhanced Retrieval
  • 29. 29 Explain and Improve GenAI Applications Easily trace sources and explain retrieval logic Understand and explain patterns in AI grounding Improve GenAI grounding data at scale Neo4j Inc. All rights reserved 2024
  • 30. Easily Trace Sources Neo4j Inc. All rights reserved 2023 30 Add citation metadata to nodes and relationships within the knowledge graph Enable source citation in LLM responses by integrating with frameworks like LangChain and LlamaIndex
  • 31. Explain Retrieval Logic Neo4j Inc. All rights reserved 2024 31 Inspect and explain retrieval logic by converting user questions to explicit Cypher queries that are human- readable and traceable
  • 32. 32 Neo4j Inc. All rights reserved 2024 Understand and Explain Patterns in AI Grounding Easily understand grounding data by representing it in a Neo4j knowledge graph-both a human-friendly and machine/GenAI-readable format Introspect and visualize connections between data using Cypher queries and low-code/no-code interfaces like Neo4j Bloom Analyze patterns in grounding data using graph algorithms like KNN, community detection and centrality to understand semantic similarities and connections between sources
  • 33. 33 Neo4j Inc. All rights reserved 2024 Improve GenAI Grounding Data at Scale Improve data quality using Cypher and graph algorithms for duplicate identification, outlier detection, and revealing trends and biases Assess LLM performance and usage patterns to identify areas of improvement –analyze the connections between prompts, responses, and grounding data using Cypher and graph algorithms
  • 34. 34 Power your AI applications with robust and dynamic data representation Rapidly build a knowledge graph for AI use cases Integrate with the GenAI ecosystem Accelerate GenAI Application Development 34 Neo4j Inc. All rights reserved 2024
  • 35. Empower your AI projects with Robust and Dynamic Data Representation 35 Neo4j Inc. All rights reserved 2024 Harness all your data in one place with a property graph data model, including vector storage and search capabilities Future-proof with an adaptable, dev-friendly schema to add new data types and entities, while maintaining data quality Enable real-time data ingestion into Neo4j for immediate use in GenAI apps, with streaming support via our Kafka Connector ● Car ● Person Person Name: “Andre” Born: May 29, 1970 Twitter: “@dan” Name: “Mica” Born: Dec 5, 1975 Car Brand “Volvo” Model: “V70” Description: “An executive car manufactured and…” DescEmbedding: [0.1, -0.3, 0.4, …, -0.7] DescSource:”https://en.wikipedia.org/wiki/Volvo_V70” Since: Jan 10, 2011 LOVES KNOWS KNOWS LIVES WITH O W N S D R I V E S
  • 36. Rapidly Build a Knowledge Graph for AI Use Cases 36 Neo4j Inc. All rights reserved 2024 Car Car Jumpstart knowledge graph creation from unstructured data with named entity recognition Rapidly model structured data as nodes and relationships in a knowledge graph Ingest text, audio, and other content embeddings as node vector properties and index them for use in RAG Embedding (Unstructured) Structured Unstructured Data Sources Named Entity Recognition Structured Data Generative AI Models Embedding Models Knowledge Graph
  • 37. Integrate with the GenAI Ecosystem 37 Neo4j Inc. All rights reserved 2024 GenAI Stack Application Generative AI & Embedding Models Orchestration Grounding Knowledge Graph Neo4jGraph Neo4jVector GraphCypherQAChain Neo4jGraphStore Neo4jVectorStore KnowledgeGraphIndex Neo4j GenAI Integrations Text | Chat | Embedding NL Query | Image Gen Neo4j Drivers Java Python JavaScript Call LLM APIs natively via Cypher using our GenAI procedures or open-source APOC library Integrate Neo4j with leading LLM open-source frameworks such as LangChain and LlamaIndex Agnostic LLM orchestration connecting graphs to OpenAI, AWS Bedrock, GCP Vertex AI, Azure, Anthropic, Hugging Face, and other proprietary and open source foundation models
  • 38. Neo4j Inc. All rights reserved 2024 38 Summary Elevate relevance with domain context and inferences Accelerate GenAI application development Explain and improve GenAI applications
  • 39. GenAI - Use Cases
  • 40. Neo4j Inc. All rights reserved 2024 40 Challenge: Global Retailer wants to retain and grow talent, but finding the right new opportunity is in the hands of the associate. This is a time consuming and often limiting approach because the current system forces the associate to search and browse roles without visibility into all the options and without knowledge about how roles and skills come together Solution: Build a career opportunity recommendation system based on where associates live, work today, their skills, and past work experience Impact: Engage associates at all levels of their career path and guide them to their best next position. Proactively recruit candidates for promotion based on their attributes Roles (Email, Custom Cards) Associate Global Retail Giant uses LLM with Knowledge Graph to Recommend the Best Opportunities
  • 41. Neo4j Inc. All rights reserved 2024 41 Investment Bank Summarizes Quarterly Earnings Reports Across Companies Challenge: Investment bankers need a quick way to understand the detail of quarterly reporting across all the companies in their portfolios, but data is stored in multiple formats and locations Solution: Use vector embeddings to look for the most relevant information, while the Neo4j knowledge graph adds the exact match for financial statements Impact: Quickly review quarterly reports across companies Investment Banker Prompt LLM Embeddings API Vector Search in Vector Index Embedding Relevant Results / Documents Knowledge graph of financial statements LLM Chat API Response
  • 42. Neo4j Inc. All rights reserved 2023 42 Pharmaceutical Company Democratize Access to Supply Chain Risk Analysis Challenge: Supply Chain risk analysis knowledge graph was accessible only by 300 experts familiar with graph analysis. They wanted to open up these insights to thousands more employees Solution: Conversational AI solution to allow natural language access to supply chain KG. Any employee can ask a question in plain english. It gets converted into Cypher query that can pull relevant risk assessment data from the graph. The query results get passed back into natural language generator to create an an easy to understand response to the initial question Impact: Democratize access to supply chain risk analysis Supply Chain Knowledge Graph Prompt (Description of Desired Products) Cypher Query Relevant Results Employee LLM API LLM API Response
  • 43. Neo4j Inc. All rights reserved 2023 43 Government Procurement Entity Automates Complex Processes Challenge: Government entities can overspend or acquire goods and services redundantly because the volume of RFPs makes reviewing each of them resource prohibitive Solution: Use LLM to read the nature of RFP and classify it accordingly. Compare the new RFP against the knowledge graph of active and historic RFPs and associated spend. Recommend opportunities for consolidation or terms negotiation with suppliers Impact: Save tax dollars for other important projects Predefined Prompt with Results LLM API Generates personalized text User is Emailed with Recommendation Procurement Officer Supplier LLM API Categorizes RFP Enterprise App Ingests New RFP Knowledge graph of RFPs and spending patterns
  • 44. 44 Neo4j Inc. All rights reserved 2024 FREE to use and test: https://llm-graph-builder.neo4jlabs.com/ Github: https://github.com/neo4j-labs/llm-graph- builder LLM Graph Builder
  • 45. Demo!