@@ -18,10 +18,10 @@ the ArangoDB team.
1818## Overview
1919
2020The Retriever service offers two distinct search methods:
21- - ** Instant search** : Analyzes entire document to identify themes and patterns,
22- perfect for high-level insights and comprehensive summaries .
23- - ** Deep search** : Focuses on specific entities and their relationships, ideal
24- for detailed queries about particular concepts .
21+ - ** Instant search** : Focuses on specific entities and their relationships, ideal
22+ for fast queries about particular concepts .
23+ - ** Deep search** : Analyzes the knowledge graph structure to identify themes and patterns,
24+ perfect for comprehensive insights and detailed summaries .
2525
2626The service supports both private (Triton Inference Server) and public (OpenAI)
2727LLM deployments, making it flexible for various security and infrastructure
@@ -46,14 +46,17 @@ from your knowledge graph. It provides two powerful search methods, instant sear
4646and deep search, that leverage the structured knowledge graph created by the Importer
4747to deliver accurate and contextually relevant responses to your natural language queries.
4848
49- ### Deep search
49+ ### Deep Search
5050
51- Deep search is designed for queries that require understanding and aggregation
52- of information across your entire document. It's particularly effective for questions
53- about overall themes, patterns, or high-level insights in your data.
51+ Deep Search is designed for highly detailed, accurate responses that require understanding
52+ what kind of information is available in different parts of the knowledge graph and
53+ sequentially retrieving information in an LLM-guided research process. Use whenever
54+ detail and accuracy are required (e.g. aggregation of highly technical details) and
55+ very short latency is not (i.e. caching responses for frequently asked questions,
56+ or use case with agents or research use cases).
5457
5558- ** Community-Based Analysis** : Uses pre-generated community reports from your
56- knowledge graph to understand the overall structure and themes of your data,
59+ knowledge graph to understand the overall structure and themes of your data.
5760- ** Map-Reduce Processing** :
5861 - ** Map Stage** : Processes community reports in parallel, generating intermediate responses with rated points.
5962 - ** Reduce Stage** : Aggregates the most important points to create a comprehensive final response.
@@ -63,11 +66,12 @@ about overall themes, patterns, or high-level insights in your data.
6366- "Summarize the key findings across all documents"
6467- "What are the most important concepts discussed?"
6568
66- ### Instant search
69+ ### Instant Search
6770
68- Instant search focuses on specific entities and their relationships within your
69- knowledge graph. It is ideal for detailed queries about particular concepts,
70- entities, or relationships.
71+ Instant Search is designed for responses with very short latency. It triggers
72+ fast unified retrieval over relevant parts of the knowledge graph via hybrid
73+ (semantic and lexical) search and graph expansion algorithms, producing a fast,
74+ streamed natural-language response with clickable references to the relevant documents.
7175
7276- ** Entity Identification** : Identifies relevant entities from the knowledge graph based on the query.
7377- ** Context Gathering** : Collects:
0 commit comments