Skip to content

Commit 2918291

Browse files
Restructure AI docs (#1102)
* Restructure AI docs * update * First round of updates * add retrieval * update graphrag * update prerequisites * update retrieval * add img placeholder * add examples and demos * change header * add anchors * add centrality measures * update callout * add kg creation * small updates * apply suggestions from code review Co-authored-by: Katarina Supe <[email protected]> * fixes * Move images * Add images * update style * update grapchat docs * update styling * update * add redirect * final updates * small fixes * change title --------- Co-authored-by: matea16 <[email protected]> Co-authored-by: Matea Pesic <[email protected]>
1 parent e79cf5b commit 2918291

35 files changed

+1159
-441
lines changed

next.config.mjs

+5
Original file line numberDiff line numberDiff line change
@@ -3119,6 +3119,11 @@ export default withNextra({
31193119
destination: '/data-modeling',
31203120
permanent: true
31213121
},
3122+
{
3123+
source: '/ai-ecosystem/graph-rag#integrations',
3124+
destination: '/ai-ecosystem/integrations',
3125+
permanent: true
3126+
},
31223127
{
31233128
source: '/advanced-algorithms/available-algorithms#streaming-graph-algorithms',
31243129
destination: '/advanced-algorithms/available-algorithms#dynamic-graph-algorithms-enterprise',

pages/ai-ecosystem.mdx

+19-29
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,32 @@
11
---
2-
title: Memgraph's AI Ecosystem
2+
title: Memgraph's AI ecosystem
33
description: Explore key features, such as community detection, node embeddings, and graph neural networks, alongside integrations with popular AI libraries like LangChain and LlamaIndex, to create powerful, data-driven GenAI solutions.
44
---
55

66
import { Callout } from 'nextra/components'
77
import {CommunityLinks} from '/components/social-card/CommunityLinks'
88

9-
# Memgraph's AI Ecosystem
9+
# Memgraph's AI ecosystem
1010

11-
To learn about Memgraph's key features to build AI apps, explore the following
12-
pages:
11+
AI drives a wide range of innovations, from machine learning (ML) models to
12+
natural language processing (NLP) systems and beyond. These technologies
13+
frequently intersect, enabling the creation of powerful applications with
14+
Generative AI (GenAI), including advanced chatbots and agents.
1315

14-
- [GraphRAG](/ai-ecosystem/graph-rag)
15-
- [Machine learning](/ai-ecosystem/machine-learning)
16+
## What You'll Find Here
1617

18+
This section of Memgraph’s documentation is your guide to using Memgraph for AI:
1719

18-
AI spans multiple areas like machine learning (ML), natural language processing
19-
(NLP), and knowledge representation and reasoning (KRR), often overlapping to
20-
create advanced systems. A key example is **Generative AI (GenAI)**, which generates
21-
new content like text or images. Large Language Models (LLMs) power many GenAI
22-
apps, but getting them to work with your custom data can be challenging.
23-
24-
Fine-tuning LLMs to incorporate custom data is often complex, slow, and costly.
25-
Plus, frequent updates make it inefficient.
26-
27-
**Retrieval-Augmented Generation (RAG)** solves this by enhancing LLMs with
28-
external data sources, enabling dynamic, scalable knowledge updates. Traditional
29-
RAG is based on vector structure with vector databases, and it has proven to be
30-
a great solution in many use cases. Still, it often falls short when retrieving
31-
crucial knowledge from complex datasets. That is where GraphRAG excels.
32-
33-
**GraphRAG** improves on this by using knowledge graphs and graph features (e.g.,
34-
community detection, neighborhood analysis) for more accurate retrieval and
35-
data-rich insights. This hybrid approach provides better context and performance
36-
for GenAI applications.
37-
38-
Memgraph has been a popular choice in AI, especially for cases that utilize
39-
[machine learning](/ai-ecosystem/machine-learning). It also proves to be a great
40-
choice to build a [GraphRAG](/ai-ecosystem/graph-rag).
20+
- [Building GenAI apps with GraphRAG](/ai-ecosystem/graph-rag): See how knowledge graphs enable more
21+
efficient and scalable RAG systems.
22+
- [AI integrations with Memgraph](/ai-ecosystem/integrations): We have several integrations with popular
23+
AI frameworks to help you customize and build your own GenAI application from
24+
scratch. Some of the libraries that support Memgraph
25+
include **LangChain** and **LlamaIndex**.
26+
- [GraphChat in Memgraph Lab](/ai-ecosystem/graphchat): Explore how natural language querying
27+
(GraphChat) ties into the GraphRAG ecosystem, making complex graphs accessible
28+
to everyone.
29+
- [Machine learning with Memgraph](/ai-ecosystem/machine-learning): Learn how Memgraph powers ML workflows
30+
with graph-powered insights.
4131

4232
<CommunityLinks/>

pages/ai-ecosystem/_meta.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
export default {
22
"graph-rag": "GraphRAG",
3-
"machine-learning": "Machine learning"
3+
"integrations": "Integrations",
4+
"graphchat": "GraphChat",
5+
"machine-learning": "Machine learning",
46
}

0 commit comments

Comments
 (0)