Skip to content

Commit 679744f

Browse files
committed
working draft
1 parent 16dfb15 commit 679744f

File tree

7 files changed

+103
-0
lines changed

7 files changed

+103
-0
lines changed

website/next.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ const withNextra = nextra({
7171
type: 'children',
7272
title: t('global.navigation.tokenApi'),
7373
},
74+
'---4': {
75+
type: 'separator',
76+
},
77+
'ai-suite': {
78+
type: 'children',
79+
title: t('global.navigation.ai-suite'),
80+
},
7481
'---5': {
7582
type: 'separator',
7683
},
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"the-graph-assistant": "The Graph Assistant"
3+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import titles from './_meta-titles.json'
2+
3+
export default {
4+
'the-graph-assistant': 'The Graph Assistant',
5+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export default {
2+
'quick-start': 'Quick Start',
3+
introduction: 'Introduction',
4+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: Introduction
3+
---
4+
5+
The Graph Assistant gives instant, code-free access to blockchain data, transforming natural language into precise, AI-powered queries without the need to code.
6+
7+
## Overview
8+
9+
### What is The Graph Assistant?
10+
11+
It's an advanced, agentic easy to use interface for querying blockchain data using natural language. It automatically interprets user intent, generates precise queries, executes them via The Graph and Token API, and presents structured, AI-powered answers without requiring any code.
12+
13+
Unlike traditional dashboards or chatbots, The Graph Assistant simplifies technical complexity and delivers composable insights directly from indexed subgraphs and token datasets.
14+
15+
## How to Use The Graph Assistant
16+
17+
You type a natural language question into the chat interface, such as:
18+
19+
```yaml
20+
"What's the total number of DAI transfers on Optimism last week?"
21+
```
22+
23+
### Behind the Scenes
24+
25+
The assistant:
26+
27+
1. Interprets your intent
28+
2. Maps it to the correct Subgraphs or Token API endpoint
29+
3. Executes optimized queries
30+
4. Returns results as a clean, readable table.
31+
32+
You don't need to write queries or understand a Subgraph's schema, you simply ask.
33+
34+
To get started follow the [quickstart]() and explore it's capabilities.
35+
36+
## Core Features
37+
38+
| Feature | Description |
39+
| --- | --- |
40+
| **Friendly Interface** | Conversational access to blockchain data via natural language. You simply ask questions, the assistant fetches the answer, and renders it as a table |
41+
| **Backed by Subgraphs** | Uses subgraphs to index protocol-specific data like transactions, events, and protocol metrics |
42+
| **Backed by Token API** | Uses Token API for token-level information like balances, transfers, and metadata. |
43+
| **No Setup Required** | No need to configure data sources or write queries. |
44+
| **Automatic Query Building** | The assistant performs complex queries such as fetching historical token volumes, protocol analytics, or cross-chain data and handles filtering, pagination, and joins across Subgraphs automatically. |
45+
| **Supports Complex Data Needs** | Handles multi-chain, historical, and analytical requests (e.g., volume over time, asset flows, usage metrics). |
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Quick Start
3+
---
4+
5+
This guide provides step-by-step instructions for getting started with The Graph AI Assistant quickly.
6+
7+
## Step-by Step
8+
9+
### Step 1. Create an Account
10+
11+
Go to: (The Graph AI)[thegraph.com/ai]
12+
13+
- Click Sign Up (or Log In if you already have an account).
14+
- Use your GitHub or email credentials.
15+
- No additional setup is required
16+
17+
### Step 2. Open the Assistant Chat
18+
19+
After logging in:
20+
21+
- You'll see the assistant interface.
22+
- At the bottom of the page, you will find a chat input bar. This is where you will interact with the assistant.
23+
24+
### Step 3: Ask Your First Question
25+
26+
In the input bar, type a natural-language query (everyday language).
27+
28+
Example:
29+
30+
```yaml
31+
Show me the 24-hour trading volume of XYZ token on Ethereum
32+
```
33+
34+
The assistant will:
35+
36+
- Digest your question
37+
- Fetch onchain data using Subgraphs or the Token API
38+
- Return a clean, formatted response in markdown with the data you need

website/src/pages/en/global.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"subgraphs": "Subgraphs",
77
"substreams": "Substreams",
88
"sps": "Substreams-Powered Subgraphs",
9+
"ai-suite": "AI Suite",
910
"tokenApi": "Token API",
1011
"indexing": "Indexing",
1112
"resources": "Resources",

0 commit comments

Comments
 (0)