Skip to content

Commit bec2f30

Browse files
nerpaulaSimran-B
authored andcommitted
update description of instant and deep search; fix some anchor links
1 parent 3504267 commit bec2f30

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

site/content/ai-suite/graphrag/web-interface.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ See also the [GraphRAG Retriever](../reference/retriever.md) documentation.
159159
## Chat with your Knowledge Graph
160160

161161
The Retriever service provides two search methods:
162-
- [Local search](../reference/retriever.md#local-search): Local queries let you
163-
explore specific nodes and their direct connections.
164-
- [Global search](../reference/retriever.md#global-search): Global queries uncover
165-
broader patters and relationships across the entire Knowledge Graph.
162+
- [Instant search](../reference/retriever.md#instant-search): Instant
163+
queries provide fast responses.
164+
- [Deep search](../reference/retriever.md#deep-search): This option will take
165+
longer to return a response.
166166

167167
![Chat with your Knowledge Graph](../../images/graphrag-ui-chat.png)
168168

site/content/ai-suite/reference/retriever.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ the Arango team.
1515
## Overview
1616

1717
The Retriever service offers two distinct search methods:
18-
- **Instant search**: Analyzes entire document to identify themes and patterns,
19-
perfect for high-level insights and comprehensive summaries.
20-
- **Deep search**: Focuses on specific entities and their relationships, ideal
21-
for detailed queries about particular concepts.
18+
- **Instant search**: Focuses on specific entities and their relationships, ideal
19+
for fast queries about particular concepts.
20+
- **Deep search**: Analyzes the knowledge graph structure to identify themes and patterns,
21+
perfect for comprehensive insights and detailed summaries.
2222

2323
The service supports both private (Triton Inference Server) and public (OpenAI)
2424
LLM deployments, making it flexible for various security and infrastructure
@@ -43,14 +43,17 @@ from your knowledge graph. It provides two powerful search methods, instant sear
4343
and deep search, that leverage the structured knowledge graph created by the Importer
4444
to deliver accurate and contextually relevant responses to your natural language queries.
4545

46-
### Deep search
46+
### Deep Search
4747

48-
Deep search is designed for queries that require understanding and aggregation
49-
of information across your entire document. It's particularly effective for questions
50-
about overall themes, patterns, or high-level insights in your data.
48+
Deep Search is designed for highly detailed, accurate responses that require understanding
49+
what kind of information is available in different parts of the knowledge graph and
50+
sequentially retrieving information in an LLM-guided research process. Use whenever
51+
detail and accuracy are required (e.g. aggregation of highly technical details) and
52+
very short latency is not (i.e. caching responses for frequently asked questions,
53+
or use case with agents or research use cases).
5154

5255
- **Community-Based Analysis**: Uses pre-generated community reports from your
53-
knowledge graph to understand the overall structure and themes of your data,
56+
knowledge graph to understand the overall structure and themes of your data.
5457
- **Map-Reduce Processing**:
5558
- **Map Stage**: Processes community reports in parallel, generating intermediate responses with rated points.
5659
- **Reduce Stage**: Aggregates the most important points to create a comprehensive final response.
@@ -60,11 +63,12 @@ about overall themes, patterns, or high-level insights in your data.
6063
- "Summarize the key findings across all documents"
6164
- "What are the most important concepts discussed?"
6265

63-
### Instant search
66+
### Instant Search
6467

65-
Instant search focuses on specific entities and their relationships within your
66-
knowledge graph. It is ideal for detailed queries about particular concepts,
67-
entities, or relationships.
68+
Instant Search is designed for responses with very short latency. It triggers
69+
fast unified retrieval over relevant parts of the knowledge graph via hybrid
70+
(semantic and lexical) search and graph expansion algorithms, producing a fast,
71+
streamed natural-language response with clickable references to the relevant documents.
6872

6973
- **Entity Identification**: Identifies relevant entities from the knowledge graph based on the query.
7074
- **Context Gathering**: Collects:

0 commit comments

Comments
 (0)