Indexing#
Concept#
An Index
is a data structure that allows us to quickly retrieve relevant context for a user query.
For LlamaIndex, it’s the core foundation for retrieval-augmented generation (RAG) use-cases.
At a high-level, Indexes
are built from Documents.
They are used to build Query Engines and Chat Engines
which enables question & answer and chat over your data.
Under the hood, Indexes
store data in Node
objects (which represent chunks of the original documents), and expose a Retriever interface that supports additional configuration and automation.
The most common index by far is the VectorStoreIndex
; the best place to start is the VectorStoreIndex usage guide.
For other indexes, check out our guide to how each index works to help you decide which one matches your use-case.
Other Index resources#
- Module Guides
- VectorStoreIndex
- Summary Index
- Tree Index
- Keyword Table Index
- Knowledge Graph Index
- Custom Retriever combining KG Index and VectorStore Index
- Knowledge Graph Query Engine
- Knowledge Graph RAG Query Engine
- REBEL + Knowledge Graph Index
- REBEL + Wikipedia Filtering
- SQL Index
- SQL Query Engine with LlamaIndex + DuckDB
- Document Summary Index
- The
ObjectIndex
Class