SlideShare a Scribd company logo
1 of 39
Neo4j Inc. All rights reserved 2023
Product Vision
and Roadmap
Anurag Tandon
VP, Product Management
1
Neo4j Inc. All rights reserved 2024
New features in Neo4j & a peek into the future
Knowledge Graphs + LLM = 😁
2
Agenda
Neo4j Inc. All rights reserved 2024
Cloud Scale with Enterprise Security, Governance & Compliance
Trusted Fundamentals
Cloud First AI Enabler
Ease of Use
Most advanced Graph Algorithms
with in memory projections
Enable intelligent GenAI apps with
Knowledge graphs + LLMs
Integrate with GenAI platforms
Cloud native service integrations to
simplify application development
Fully Managed Database for 0
operations experience so developers
can focus on building applications
Get started with Free Database
Self-service capabilities that enable
developers to improve time to value
Simplify APIs and tools to improve
productivity of developers
Enhanced developer tooling
PRODUCT VISION
Cloud First With Ecosystem Focus
3
Neo4j Inc. All rights reserved 2024
4
New in Neo4j 5 -
recap
● Parallel Runtime for faster analytical Queries
● Change Data Capture better data integration
● Autonomous clustering and Fabric for limitless
scalability
● Graph Schema, Improved Backup recovery,
incremental import
● Neo4j Ops Manager for managing databases
● Aura Enterprise Database on all clouds (AWS, GCP,
Azure)
● SOC II Type 2 compliance, AuraDB APIs, RBAC
configuration
● Better observability with security log forwarding
Performance metrics forwarding (EAP)
● Private Link & CMEK (Coming soon)
Neo4j product capabilities launched in 2023
Neo4j Inc. All rights reserved 2024
5
● Unified Developer Experience with Workspace
● Self-service Data Import
● GraphQL Support & Simplified Drivers API
● Bloom support for GDS algorithms
● GDS Python API
● Knowledge Graph Embeddings
● Longest Path & Topological Sort Algorithm
● Vector Search
● Real Time integration with Embedding APIs & LLM
Models
● Cloud Integrations (OpenAI + MS Azure OpenAI,
VertexAI, AWS Bedrock, Langchain, LlamaIndex)
● Ubiquitous availability of Aura in all major
clouds: GCP, AWS, Azure
● Enterprise-ready Aura
﹣ SOC II Type 2 compliance
﹣ Better DevOps with AuraDB APIs
﹣ Easier RBAC configuration via Aura
console
﹣ Better observability with security log
forwarding (EAP) and Performance
metrics forwarding (EAP)
﹣ Private Link
﹣ CMEK-Coming soon
Neo4j Inc. All rights reserved 2024
6
NEO4J AURA
2023 Key Capabilities
Graph Schema: New constraints on
nodes, relationships and properties:
● Unique relationship property
● Relationship key
● Property data types
NEO4J 5.0 NEW CAPABILITIES
Database Enhancements
Neo4j Inc. All rights reserved 2024
7
Graph Pattern Matching: Improved
expressivity of graph navigation with
quantified path patterns,
a more powerful and performant syntax
to navigate and traverse your graph.
NEO4J 5.0 NEW CAPABILITIES
Database Enhancements
Neo4j Inc. All rights reserved 2024
8
NEO4J 5.0 NEW CAPABILITIES
Database Enhancements
Graph Pattern Matching Example → Fraud Rings
Neo4j Inc. All rights reserved 2024
9
QPP
MATCH path=(a:Account)-[:PERFORMS]->(first_tx)
((tx_i)-[:BENEFITS_TO]->(a_i)-[:PERFORMS]->(tx_j)
WHERE tx_i.date < tx_j.date
AND 0.80 <= tx_i.amount / tx_j.amount <= 1.00
){3,6}
(last_tx)-[:BENEFITS_TO]->(a)
WHERE size(apoc.coll.toSet([a]+a_i)) = size([a]+a_i)
RETURN path
Neo4j Inc. All rights reserved 2024
10
Parallel Runtime
NEO4J 5.0 NEW CAPABILITIES
Parallel Runtime: Speed up analytical query up to 100x
Neo4j Inc. All rights reserved 2024
11
Parallel Runtime Speedup
Up to 100x faster analytical queries by adding CPU
cores
Neo4j Inc. All rights reserved 2024
12
More cores
Faster
Queries
Neo4j Inc. All rights reserved 2024
13
Change Data
Capture (CDC)
NEO4J 5.0 NEW CAPABILITIES
Change Data Capture: Automated Real-Time
Change Tracking
Neo4j Inc. All rights reserved 2024
14
Workspace Started Unifying Experience of our Graph Tools
Neo4j Inc. All rights reserved 2024
15
data importer
browser
bloom
Default experience in Aura for non-Enterprise,
Optional for Enterprise
Neo4j Browser → Query
Possible to connect to self-managed instances
Improvements in Workspace Query
Neo4j Inc. All rights reserved 2024
16
New Editor
Saved Cypher (fka Favorites)
Visualization Library from Bloom
Improvements in Bloom / Explore
Neo4j Inc. All rights reserved 2024
17
Data Slicer
Scene Actions
GDS Algos
Improved Search UX
Neo4j Inc. All rights reserved 2024
18
Looking Ahead
NEO4J 5.0 NEW CAPABILITIES
Fabric Auto-Sharding
Neo4j Inc. All rights reserved 2024
19
Coming 2024+
Mapping
Sharding
Rules
Unified Product User Experience
Neo4j Inc. All rights reserved 2024
20
Coming 2024+
Aura Console
Graph Tools
Ops
Management
Ephemeral Graph Data Science
Neo4j Inc. All rights reserved 2024
21
Coming 2024+
Data transferred via
Arrow from Neo4j
transactional format
into GDS analytics
format
Managed runtimes for running
optimized GDS algorithms or
can package and run full GNN
executions that leverage GDS
features and GDS pipelines
Neo4j
AuraDB
GDS
Session
AuraDS
EVALUATION
Built-in
runtimes for
GDS native
algorithms
Unmanaged GNN execution
Managed Runtimes
Neo4j Inc. All rights reserved 2024
AI Enabler
Graph Data Science & Generative AI
22
Neo4j Inc. All rights reserved 2023
Neo4j Inc. All rights reserved 2024
23
Knowledge Graphs + LLMs
23
Facts
Explicit
Explainable
Words
Implicit
Opaque
KGs LLMs
+
Left Brain + Right Brain
Neo4j Inc. All rights reserved 2023
Neo4j Inc. All rights reserved 2024
24
A Perfect Match
24
Artificial Intelligence
Machine Learning
Information Architecture
Data Architecture
LLM
Knowledge
Graph
Linguistic
Pattern
Matching
Hierarchical
Emergent
Features
Neo4j Inc. All rights reserved 2023
Neo4j Inc. All rights reserved 2024
25
Could this be vector search?
25
Artificial Intelligence
Machine Learning
Information Architecture
Data Architecture
LLM
Knowledge
Graph
Linguistic
Pattern
Matching
Hierarchical
Emergent
Features
v
e
c
t
o
r
Why RAG With Vector Databases Fall Short
Similarity is insufficient for rich enterprise reasoning
Neo4j Inc. All rights reserved 2024
26
1
3
2
4
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
27
What is a Knowledge Graph?
An information architecture with layered connections.
Neo4j Inc. All rights reserved 2024
DATA INFORMATION KNOWLEDGE INSIGHT MEANING
records sets relationships patterns layers
RAG with Neo4j
Neo4j Inc. All rights reserved 2024
28
Find similar documents,
content and data
Expanded context for related
information and ranking
results
Improve GenAI inferences and
insights. Discover new
relationships and entities
Unified search, knowledge graph and data science capabilities to
improve RAG quality and effectiveness
Vector Search,
Full-text Search,
Geospatial, Pattern
match
Data Science
Knowledge Graph
Neo4j Inc. All rights reserved 2023
Neo4j Inc. All rights reserved 2024
29
Knowledge Graph Complementary Benefits
29
LLM
Human
Application
Knowledge
Graph
Extend LLM
knowledge
through RAG
Invite human
exploration &
curation
Advanced
application
features & analysis
Neo4j Inc. All rights reserved 2024
30
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
Neo4j Inc. All rights reserved 2024
31
Knowledge Graph
Construction with
Cypher Templates
Neo4j Inc. All rights reserved 2024
Human
32
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
2 RAG-based Chat Applications
Neo4j Inc. All rights reserved 2024
33
Natural Language
Search combining
explicit and implicit
relationships
Neo4j Inc. All rights reserved 2024
Application Human
34
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
2 RAG-based Chat Applications
3 RAG-enhanced General Applications
Neo4j Inc. All rights reserved 2024
35
Natural Language
assistants and
co-pilots,
rooted in business
policy
Prompt +
Relevant
Information
Embedding API LLM API
User
Database
Search
Prompt Response
Relevant Results
Knowledge
Graph
Application
● Integrate Neo4j with leading LLM
open-source frameworks such as
LangChain and LlamaIndex
● Call LLM APIs natively via Cypher using
our open-source APOC library
● Agnostic LLM orchestration connecting
graphs to OpenAI, AWS Bedrock, GCP
Vertex AI, Azure, Anthropic, Hugging
Face, and other proprietary and open
source foundation models
Integrate with the GenAI Ecosystem
Neo4j Inc. All rights reserved 2024
36
GenAI Stack
Application
Generative AI & Embedding Models
Orchestration
Grounding Knowledge Graph
Neo4jGraph
Neo4jVector
GraphCypherQAChai
n
Neo4jGraphStore
Neo4jVectorStore
KnowledgeGraphIndex
Neo4j GenAI Integrations
Text | Chat | Embedding
NL Query | Image Gen
Neo4j Drivers
Java
Python JavaScript
● Co-Pilot in Neo4j Browser for autocomplete
& Cypher generation
● Bloom & NeoDash NL integration
● More framework integrations:
﹣ Langchain, LlamaIndex,
SemanticKernel, Spring.AI, Haystack
POWERING GENERATIVE AI APPS
Neo4j’s GenAI Roadmap
Neo4j Inc. All rights reserved 2024
37
Coming 2024+
● Parallel Runtime for faster analytical Queries
● Change Data Capture better data integration
● Autonomous clustering and Fabric for limitless
scalability
● Graph Schema, Improved Backup recovery,
incremental import
● Neo4j Ops Manager for managing databases
● Aura Enterprise Database on all clouds (AWS, GCP,
Azure)
● SOC II Type 2 compliance, AuraDB APIs, RBAC
configuration
● Better observability with security log forwarding
Performance metrics forwarding (EAP)
● Private Link & CMEK (Coming soon)
Neo4j product capabilities launched in 2023
Neo4j Inc. All rights reserved 2024
38
● Unified Developer Experience with Workspace
● Self-service Data Import
● GraphQL Support & Simplified Drivers API
● Bloom support for GDS algorithms
● GDS Python API
● Knowledge Graph Embeddings
● Longest Path & Topological Sort Algorithm
● Vector Search
● Real Time integration with Embedding APIs & LLM
Models
● Cloud Integrations (OpenAI + MS Azure OpenAI,
VertexAI, AWS Bedrock, Langchain, LlamaIndex)
Neo4j Inc. All rights reserved 2024
39
Thank
You!
anurag.tandon@neo4j.com

More Related Content

Similar to Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf

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
 
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 Analytics
The Path To Success With Graph Database and AnalyticsThe Path To Success With Graph Database and Analytics
The Path To Success With Graph Database and AnalyticsNeo4j
 
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.pdfNeo4j
 
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
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j
 
ntroducing to the Power of Graph Technology
ntroducing to the Power of Graph Technologyntroducing to the Power of Graph Technology
ntroducing to the Power of Graph TechnologyNeo4j
 
New! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the Cloud
New! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the CloudNew! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the Cloud
New! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the CloudNeo4j
 
The Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdfThe Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdfNeo4j
 
Graph Data Science at Scale
Graph Data Science at ScaleGraph Data Science at Scale
Graph Data Science at ScaleNeo4j
 
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptxNeo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptxNeo4j
 
GPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge GraphGPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge GraphNeo4j
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j
 
Amsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & TomorrowAmsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & TomorrowNeo4j
 
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptxNeo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptxNeo4j
 
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
 
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
 
Deeper Insights with Graph Data Science
Deeper Insights with Graph Data ScienceDeeper Insights with Graph Data Science
Deeper Insights with Graph Data ScienceNeo4j
 
3 Steps to Accelerate to Cloud
3 Steps to Accelerate to Cloud3 Steps to Accelerate to Cloud
3 Steps to Accelerate to CloudRightScale
 
Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j Neo4j
 

Similar to Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf (20)

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 : 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...
 
The Path To Success With Graph Database and Analytics
The Path To Success With Graph Database and AnalyticsThe Path To Success With Graph Database and Analytics
The Path To Success With Graph Database and Analytics
 
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
 
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 Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
 
ntroducing to the Power of Graph Technology
ntroducing to the Power of Graph Technologyntroducing to the Power of Graph Technology
ntroducing to the Power of Graph Technology
 
New! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the Cloud
New! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the CloudNew! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the Cloud
New! Neo4j AuraDS: The Fastest Way to Get Started with Data Science in the Cloud
 
The Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdfThe Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdf
 
Graph Data Science at Scale
Graph Data Science at ScaleGraph Data Science at Scale
Graph Data Science at Scale
 
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptxNeo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
 
GPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge GraphGPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge Graph
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with Graph
 
Amsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & TomorrowAmsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & Tomorrow
 
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptxNeo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
 
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...
 
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...
 
Deeper Insights with Graph Data Science
Deeper Insights with Graph Data ScienceDeeper Insights with Graph Data Science
Deeper Insights with Graph Data Science
 
3 Steps to Accelerate to Cloud
3 Steps to Accelerate to Cloud3 Steps to Accelerate to Cloud
3 Steps to Accelerate to Cloud
 
Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j
 

More from Neo4j

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansNeo4j
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...Neo4j
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosNeo4j
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Neo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeNeo4j
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsNeo4j
 
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...Neo4j
 
Deloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AI
Deloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AIDeloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AI
Deloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AINeo4j
 
Ingka Digital: Linked Metadata by Design
Ingka Digital: Linked Metadata by DesignIngka Digital: Linked Metadata by Design
Ingka Digital: Linked Metadata by DesignNeo4j
 
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24Neo4j
 
Emil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptx
Emil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptxEmil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptx
Emil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptxNeo4j
 
Identification of insulin-resistance genes with Knowledge Graphs topology and...
Identification of insulin-resistance genes with Knowledge Graphs topology and...Identification of insulin-resistance genes with Knowledge Graphs topology and...
Identification of insulin-resistance genes with Knowledge Graphs topology and...Neo4j
 

More from Neo4j (20)

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG time
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge Graphs
 
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
 
Deloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AI
Deloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AIDeloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AI
Deloitte & Red Cross: Talk to your data with Knowledge-enriched Generative AI
 
Ingka Digital: Linked Metadata by Design
Ingka Digital: Linked Metadata by DesignIngka Digital: Linked Metadata by Design
Ingka Digital: Linked Metadata by Design
 
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
 
Emil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptx
Emil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptxEmil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptx
Emil Eifrem at GraphSummit Copenhagen 2024 - The Art of the Possible.pptx
 
Identification of insulin-resistance genes with Knowledge Graphs topology and...
Identification of insulin-resistance genes with Knowledge Graphs topology and...Identification of insulin-resistance genes with Knowledge Graphs topology and...
Identification of insulin-resistance genes with Knowledge Graphs topology and...
 

Recently uploaded

Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfchwongval
 
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSINGmarianagonzalez07
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsVICTOR MAESTRE RAMIREZ
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.natarajan8993
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default  Presentation : Data Analysis Project PPTPredictive Analysis for Loan Default  Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPTBoston Institute of Analytics
 
Heart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectHeart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectBoston Institute of Analytics
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...Florian Roscheck
 
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样vhwb25kk
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...Boston Institute of Analytics
 
IMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxIMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxdolaknnilon
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 

Recently uploaded (20)

Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdf
 
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business Professionals
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default  Presentation : Data Analysis Project PPTPredictive Analysis for Loan Default  Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
 
Heart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectHeart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis Project
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
 
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
 
IMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxIMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptx
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 

Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf

  • 1. Neo4j Inc. All rights reserved 2023 Product Vision and Roadmap Anurag Tandon VP, Product Management 1
  • 2. Neo4j Inc. All rights reserved 2024 New features in Neo4j & a peek into the future Knowledge Graphs + LLM = 😁 2 Agenda
  • 3. Neo4j Inc. All rights reserved 2024 Cloud Scale with Enterprise Security, Governance & Compliance Trusted Fundamentals Cloud First AI Enabler Ease of Use Most advanced Graph Algorithms with in memory projections Enable intelligent GenAI apps with Knowledge graphs + LLMs Integrate with GenAI platforms Cloud native service integrations to simplify application development Fully Managed Database for 0 operations experience so developers can focus on building applications Get started with Free Database Self-service capabilities that enable developers to improve time to value Simplify APIs and tools to improve productivity of developers Enhanced developer tooling PRODUCT VISION Cloud First With Ecosystem Focus 3
  • 4. Neo4j Inc. All rights reserved 2024 4 New in Neo4j 5 - recap
  • 5. ● Parallel Runtime for faster analytical Queries ● Change Data Capture better data integration ● Autonomous clustering and Fabric for limitless scalability ● Graph Schema, Improved Backup recovery, incremental import ● Neo4j Ops Manager for managing databases ● Aura Enterprise Database on all clouds (AWS, GCP, Azure) ● SOC II Type 2 compliance, AuraDB APIs, RBAC configuration ● Better observability with security log forwarding Performance metrics forwarding (EAP) ● Private Link & CMEK (Coming soon) Neo4j product capabilities launched in 2023 Neo4j Inc. All rights reserved 2024 5 ● Unified Developer Experience with Workspace ● Self-service Data Import ● GraphQL Support & Simplified Drivers API ● Bloom support for GDS algorithms ● GDS Python API ● Knowledge Graph Embeddings ● Longest Path & Topological Sort Algorithm ● Vector Search ● Real Time integration with Embedding APIs & LLM Models ● Cloud Integrations (OpenAI + MS Azure OpenAI, VertexAI, AWS Bedrock, Langchain, LlamaIndex)
  • 6. ● Ubiquitous availability of Aura in all major clouds: GCP, AWS, Azure ● Enterprise-ready Aura ﹣ SOC II Type 2 compliance ﹣ Better DevOps with AuraDB APIs ﹣ Easier RBAC configuration via Aura console ﹣ Better observability with security log forwarding (EAP) and Performance metrics forwarding (EAP) ﹣ Private Link ﹣ CMEK-Coming soon Neo4j Inc. All rights reserved 2024 6 NEO4J AURA 2023 Key Capabilities
  • 7. Graph Schema: New constraints on nodes, relationships and properties: ● Unique relationship property ● Relationship key ● Property data types NEO4J 5.0 NEW CAPABILITIES Database Enhancements Neo4j Inc. All rights reserved 2024 7
  • 8. Graph Pattern Matching: Improved expressivity of graph navigation with quantified path patterns, a more powerful and performant syntax to navigate and traverse your graph. NEO4J 5.0 NEW CAPABILITIES Database Enhancements Neo4j Inc. All rights reserved 2024 8
  • 9. NEO4J 5.0 NEW CAPABILITIES Database Enhancements Graph Pattern Matching Example → Fraud Rings Neo4j Inc. All rights reserved 2024 9 QPP MATCH path=(a:Account)-[:PERFORMS]->(first_tx) ((tx_i)-[:BENEFITS_TO]->(a_i)-[:PERFORMS]->(tx_j) WHERE tx_i.date < tx_j.date AND 0.80 <= tx_i.amount / tx_j.amount <= 1.00 ){3,6} (last_tx)-[:BENEFITS_TO]->(a) WHERE size(apoc.coll.toSet([a]+a_i)) = size([a]+a_i) RETURN path
  • 10. Neo4j Inc. All rights reserved 2024 10 Parallel Runtime
  • 11. NEO4J 5.0 NEW CAPABILITIES Parallel Runtime: Speed up analytical query up to 100x Neo4j Inc. All rights reserved 2024 11
  • 12. Parallel Runtime Speedup Up to 100x faster analytical queries by adding CPU cores Neo4j Inc. All rights reserved 2024 12 More cores Faster Queries
  • 13. Neo4j Inc. All rights reserved 2024 13 Change Data Capture (CDC)
  • 14. NEO4J 5.0 NEW CAPABILITIES Change Data Capture: Automated Real-Time Change Tracking Neo4j Inc. All rights reserved 2024 14
  • 15. Workspace Started Unifying Experience of our Graph Tools Neo4j Inc. All rights reserved 2024 15 data importer browser bloom Default experience in Aura for non-Enterprise, Optional for Enterprise Neo4j Browser → Query Possible to connect to self-managed instances
  • 16. Improvements in Workspace Query Neo4j Inc. All rights reserved 2024 16 New Editor Saved Cypher (fka Favorites) Visualization Library from Bloom
  • 17. Improvements in Bloom / Explore Neo4j Inc. All rights reserved 2024 17 Data Slicer Scene Actions GDS Algos Improved Search UX
  • 18. Neo4j Inc. All rights reserved 2024 18 Looking Ahead
  • 19. NEO4J 5.0 NEW CAPABILITIES Fabric Auto-Sharding Neo4j Inc. All rights reserved 2024 19 Coming 2024+ Mapping Sharding Rules
  • 20. Unified Product User Experience Neo4j Inc. All rights reserved 2024 20 Coming 2024+ Aura Console Graph Tools Ops Management
  • 21. Ephemeral Graph Data Science Neo4j Inc. All rights reserved 2024 21 Coming 2024+ Data transferred via Arrow from Neo4j transactional format into GDS analytics format Managed runtimes for running optimized GDS algorithms or can package and run full GNN executions that leverage GDS features and GDS pipelines Neo4j AuraDB GDS Session AuraDS EVALUATION Built-in runtimes for GDS native algorithms Unmanaged GNN execution Managed Runtimes
  • 22. Neo4j Inc. All rights reserved 2024 AI Enabler Graph Data Science & Generative AI 22
  • 23. Neo4j Inc. All rights reserved 2023 Neo4j Inc. All rights reserved 2024 23 Knowledge Graphs + LLMs 23 Facts Explicit Explainable Words Implicit Opaque KGs LLMs + Left Brain + Right Brain
  • 24. Neo4j Inc. All rights reserved 2023 Neo4j Inc. All rights reserved 2024 24 A Perfect Match 24 Artificial Intelligence Machine Learning Information Architecture Data Architecture LLM Knowledge Graph Linguistic Pattern Matching Hierarchical Emergent Features
  • 25. Neo4j Inc. All rights reserved 2023 Neo4j Inc. All rights reserved 2024 25 Could this be vector search? 25 Artificial Intelligence Machine Learning Information Architecture Data Architecture LLM Knowledge Graph Linguistic Pattern Matching Hierarchical Emergent Features v e c t o r
  • 26. Why RAG With Vector Databases Fall Short Similarity is insufficient for rich enterprise reasoning Neo4j Inc. All rights reserved 2024 26 1 3 2 4 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
  • 27. 27 What is a Knowledge Graph? An information architecture with layered connections. Neo4j Inc. All rights reserved 2024 DATA INFORMATION KNOWLEDGE INSIGHT MEANING records sets relationships patterns layers
  • 28. RAG with Neo4j Neo4j Inc. All rights reserved 2024 28 Find similar documents, content and data Expanded context for related information and ranking results Improve GenAI inferences and insights. Discover new relationships and entities Unified search, knowledge graph and data science capabilities to improve RAG quality and effectiveness Vector Search, Full-text Search, Geospatial, Pattern match Data Science Knowledge Graph
  • 29. Neo4j Inc. All rights reserved 2023 Neo4j Inc. All rights reserved 2024 29 Knowledge Graph Complementary Benefits 29 LLM Human Application Knowledge Graph Extend LLM knowledge through RAG Invite human exploration & curation Advanced application features & analysis
  • 30. Neo4j Inc. All rights reserved 2024 30 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph
  • 31. Neo4j Inc. All rights reserved 2024 31 Knowledge Graph Construction with Cypher Templates
  • 32. Neo4j Inc. All rights reserved 2024 Human 32 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph 2 RAG-based Chat Applications
  • 33. Neo4j Inc. All rights reserved 2024 33 Natural Language Search combining explicit and implicit relationships
  • 34. Neo4j Inc. All rights reserved 2024 Application Human 34 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph 2 RAG-based Chat Applications 3 RAG-enhanced General Applications
  • 35. Neo4j Inc. All rights reserved 2024 35 Natural Language assistants and co-pilots, rooted in business policy Prompt + Relevant Information Embedding API LLM API User Database Search Prompt Response Relevant Results Knowledge Graph Application
  • 36. ● Integrate Neo4j with leading LLM open-source frameworks such as LangChain and LlamaIndex ● Call LLM APIs natively via Cypher using our open-source APOC library ● Agnostic LLM orchestration connecting graphs to OpenAI, AWS Bedrock, GCP Vertex AI, Azure, Anthropic, Hugging Face, and other proprietary and open source foundation models Integrate with the GenAI Ecosystem Neo4j Inc. All rights reserved 2024 36 GenAI Stack Application Generative AI & Embedding Models Orchestration Grounding Knowledge Graph Neo4jGraph Neo4jVector GraphCypherQAChai n Neo4jGraphStore Neo4jVectorStore KnowledgeGraphIndex Neo4j GenAI Integrations Text | Chat | Embedding NL Query | Image Gen Neo4j Drivers Java Python JavaScript
  • 37. ● Co-Pilot in Neo4j Browser for autocomplete & Cypher generation ● Bloom & NeoDash NL integration ● More framework integrations: ﹣ Langchain, LlamaIndex, SemanticKernel, Spring.AI, Haystack POWERING GENERATIVE AI APPS Neo4j’s GenAI Roadmap Neo4j Inc. All rights reserved 2024 37 Coming 2024+
  • 38. ● Parallel Runtime for faster analytical Queries ● Change Data Capture better data integration ● Autonomous clustering and Fabric for limitless scalability ● Graph Schema, Improved Backup recovery, incremental import ● Neo4j Ops Manager for managing databases ● Aura Enterprise Database on all clouds (AWS, GCP, Azure) ● SOC II Type 2 compliance, AuraDB APIs, RBAC configuration ● Better observability with security log forwarding Performance metrics forwarding (EAP) ● Private Link & CMEK (Coming soon) Neo4j product capabilities launched in 2023 Neo4j Inc. All rights reserved 2024 38 ● Unified Developer Experience with Workspace ● Self-service Data Import ● GraphQL Support & Simplified Drivers API ● Bloom support for GDS algorithms ● GDS Python API ● Knowledge Graph Embeddings ● Longest Path & Topological Sort Algorithm ● Vector Search ● Real Time integration with Embedding APIs & LLM Models ● Cloud Integrations (OpenAI + MS Azure OpenAI, VertexAI, AWS Bedrock, Langchain, LlamaIndex)
  • 39. Neo4j Inc. All rights reserved 2024 39 Thank You! anurag.tandon@neo4j.com