Files
ragflow/docs/guides/agent/ingestion_pipeline/configure_indexer_component.md
YanZhang 611e0596f6 docs: modify docs display & add images (#17575)
### Summary

modify docs display
add some images
delete enterprise docs
standardize capitalization
2026-07-30 21:24:15 +08:00

1.4 KiB

sidebar_position, title, sidebar_label, slug, sidebar_custom_props
sidebar_position title sidebar_label slug sidebar_custom_props
6 Configure the Indexer Component Configure the Indexer Component /configure_indexer_component
categoryIcon
RagAiAgent

Configure the Indexer Component

The Indexer component indexes data for optimal retrieval. It is the final step, writing processed data into search engines such as Infinity, Elasticsearch and OpenSearch.

Key configurations:

Search method:

  • Full-text: Keyword search for exact matches, such as code and names.
  • Embedding: Semantic search using vector similarity.
  • Hybrid (recommended): Combines both methods for the best recall.

Retrieval strategy:

  • Processed text (default): Indexes chunked text.
  • Questions: Indexes generated questions. This usually produces higher similarity matches than text-to-text matching.
  • Enhanced context: Indexes summaries instead of raw text. Suitable for broad topic matching.

Filename weight:

  • A slider for including the document filename as semantic information in retrieval.

Embedding model:

  • Automatically uses the model set when creating the knowledge base.

:::caution IMPORTANT To search across multiple knowledge bases at the same time, all selected knowledge bases must use the same embedding model. :::

Configure The Indexer Component