AutoRAG Unified Search (Instant Search)
Fast unified retrieval combining chunk and entity search for quick answers
Overview
Unified Search combines chunk and entity search to provide comprehensive results with very short latency. It performs both semantic chunk search and entity relationship analysis, then intelligently selects the most relevant documents for LLM processing, producing a streamed natural-language response with clickable references to the relevant documents.
Unified Search is also available as Instant Search via the
web interface.
Configuration
{
"query_type": 3
}
Sending "mode": "INSTANT" has the same effect.
How it works
- Chunk Search: Performs semantic search on text chunks using vector embeddings.
- Entity Search: Identifies relevant entities and their relationships.
- Document Selection: Intelligently combines and ranks results from both searches.
- LLM Processing: Generates a response using the most relevant documents.
Best use cases
- “What are the main themes and key entities in the dataset?”
- “Provide a comprehensive analysis of [topic]”
- “Summarize the key findings with specific examples”
Next Steps
- Execute queries: Learn how to call the search endpoints.
- Parameters: Customize search behavior.
