Skip to content

Commit 52b1f2a

Browse files
committed
reorganize genai suite overview pages
1 parent f54dce1 commit 52b1f2a

File tree

5 files changed

+33
-60
lines changed

5 files changed

+33
-60
lines changed

site/content/gen-ai/_index.md

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,35 @@
22
title: GenAI Suite
33
menuTitle: GenAI Suite
44
weight: 2
5-
layout: default
5+
description: >-
6+
A comprehensive AI solution that transforms your data into intelligent knowledge graphs with GraphRAG capabilities, applies advanced machine learning with GraphML, and provides enterprise-grade tools for analytics, natural language querying, and AI-powered insights, all through an intuitive web interface
67
---
78

8-
{{< cards >}}
9+
## What's included
910

10-
{{% card title="GraphRAG" link="graphrag/" %}}
11-
Arango's GenAI solution for generating knowledge graphs from documents
12-
and chatting with your data.
13-
{{% /card %}}
11+
The GenAI Suite is comprised of two major components:
1412

15-
{{% card title="GraphML" link="graphml/" %}}
16-
Discover Arango's graph-powered machine learning features.
17-
{{% /card %}}
13+
- [**GraphRAG**](./graphrag/_index.md): A complete solution for extracting entities
14+
from text files to create a knowledge graph that you can then query with a
15+
natural language interface.
16+
- [**GraphML**](./graphml/_index.md): Apply machine learning to graphs for link prediction,
17+
classification, and similar tasks.
1818

19-
{{% card title="Graph Analytics" link="graph-analytics/" %}}
20-
Run algorithms such as PageRank on your graph data.
21-
{{% /card %}}
19+
Each component has an intuitive graphical user interface integrated into the
20+
Arango Data Platform web interface, guiding you through the process.
2221

23-
{{< /cards >}}
22+
Alongside these components, you also get the following additional features:
23+
24+
- [**Graph Analytics**](graph-analytics.md): Run graph algorithms such as PageRank
25+
on dedicated compute resources.
26+
- [**Jupyter notebooks**](notebook-servers.md): Run a Jupyter kernel in the platform for hosting
27+
interactive notebooks for experimentation and development of applications
28+
that use ArangoDB as their backend.
29+
- **Public and private LLM support**: Use public LLMs such as OpenAI
30+
or private LLMs with [Triton Inference Server](services/triton-inference-server.md).
31+
- [**MLflow integration**](services/mlflow.md): Use the popular MLflow as a model registry for private LLMs
32+
or to run machine learning experiments as part of the Arango Data Platform.
33+
- **Application Programming Interfaces**: Use the underlying APIs of the
34+
GenAI Suite services and build your own integrations. See the
35+
[API reference](https://arangoml.github.io/platform-dss-api/GenAI-Service/proto/index.html) documentation
36+
for more details.

site/content/gen-ai/graph-to-ai.md

Lines changed: 2 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
title: Generative Artificial Intelligence (GenAI) and Data Science
3-
menuTitle: GenAI & Data Science
2+
title: From Graph to AI
3+
menuTitle: From Graph to AI
44
weight: 25
55
description: >-
66
ArangoDB's set of tools and technologies enables analytics, machine learning,
77
and GenAI applications powered by graph data
88
aliases:
99
- data-science/overview
1010
---
11-
- [Link to 3.12](../arangodb/3.12/aql/_index.md)
1211

1312
{{< tip >}}
1413
The Arango Data Platform & GenAI Suite is available as a pre-release. To get
@@ -33,45 +32,6 @@ engineering space can make use of ArangoDB's set of tools and technologies that
3332
enable analytics and machine learning on graph data.
3433
-->
3534

36-
## GenAI Suite
37-
38-
The GenAI Suite is comprised of two major components:
39-
40-
- [**GraphRAG**](#graphrag): A complete solution for extracting entities
41-
from text files to create a knowledge graph that you can then query with a
42-
natural language interface.
43-
- [**GraphML**](#graphml): Apply machine learning to graphs for link prediction,
44-
classification, and similar tasks.
45-
46-
Each component has an intuitive graphical user interface integrated into the
47-
Arango Data Platform web interface, guiding you through the process.
48-
49-
Alongside these components, you also get the following additional features:
50-
51-
- [**Graph Visualizer**](../data-platform/graph-visualizer.md): A web-based tool for exploring your graph data with an
52-
intuitive interface and sophisticated querying capabilities.
53-
- [**Jupyter notebooks**](notebook-servers.md): Run a Jupyter kernel in the platform for hosting
54-
interactive notebooks for experimentation and development of applications
55-
that use ArangoDB as their backend.
56-
- **Public and private LLM support**: Use public LLMs such as OpenAI
57-
or private LLMs with [Triton Inference Server](services/triton-inference-server.md).
58-
- [**MLflow integration**](services/mlflow.md): Use the popular MLflow as a model registry for private LLMs
59-
or to run machine learning experiments as part of the Arango Data Platform.
60-
- [**Adapters**](../ecosystem/adapters/_index.md): Use ArangoDB together with cuGraph, NetworkX,
61-
and other data science tools.
62-
- **Application Programming Interfaces**: Use the underlying APIs of the
63-
GenAI Suite services and build your own integrations. See the
64-
[API reference](https://arangoml.github.io/platform-dss-api/GenAI-Service/proto/index.html) documentation
65-
for more details.
66-
67-
## Other tools and features
68-
69-
The Arango Data Platform includes the following features independent of the
70-
GenAI Suite:
71-
72-
- [**Graph Analytics**](graph-analytics.md): Run graph algorithms such as PageRank
73-
on dedicated compute resources.
74-
7535
## From graph to AI
7636

7737
This section classifies the complexity of the queries you can answer with

site/content/gen-ai/graphrag/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ relationships and connections becoming more sophisticated over time.
5656
- **[GraphRAG Tutorial using integrated Notebook servers](tutorial-notebook.md)**: Follow hands-on examples and implementation guidance via Jupyter Notebooks.
5757

5858
For deeper implementation details, explore the individual services:
59-
- **[Importer Service](services/importer.md)**: Transform documents into knowledge graphs.
60-
- **[Retriever Service](services/retriever.md)**: Query and extract insights from your knowledge graphs.
59+
- **[Importer Service](../services/importer.md)**: Transform documents into knowledge graphs.
60+
- **[Retriever Service](../services/retriever.md)**: Query and extract insights from your knowledge graphs.

site/content/gen-ai/technical-overview.md renamed to site/content/gen-ai/graphrag/technical-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ information in a structured graph format, allowing efficient querying and retrie
7676
3. Store the generated Knowledge Graph in the database for retrieval and reasoning.
7777

7878
For detailed information about the service, see the
79-
[Importer](services/importer.md) service documentation.
79+
[Importer](../services/importer.md) service documentation.
8080

8181
### Extract information from the Knowledge Graph
8282

@@ -87,7 +87,7 @@ You can extract information from Knowledge Graphs using two distinct methods:
8787
- Local retrieval
8888

8989
For detailed information about the service, see the
90-
[Retriever](services/retriever.md) service documentation.
90+
[Retriever](../services/retriever.md) service documentation.
9191

9292
#### Global retrieval
9393

@@ -134,7 +134,7 @@ collection, and then it expands that subgraph over related entities, relations
134134

135135
If you're working in an air-gapped environment or need to keep your data
136136
private, you can use the private LLM mode with
137-
[Triton Inference Server](services/triton-inference-server.md).
137+
[Triton Inference Server](../services/triton-inference-server.md).
138138

139139
This option allows you to run the service completely within your own
140140
infrastructure. The Triton Inference Server is a crucial component when
File renamed without changes.

0 commit comments

Comments
 (0)