@@ -15,10 +15,10 @@ the Arango team.
1515## Overview
1616
1717The 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
2323The service supports both private (Triton Inference Server) and public (OpenAI)
2424LLM 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
4343and deep search, that leverage the structured knowledge graph created by the Importer
4444to 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