Skip to content

Commit 11f59a8

Browse files
infinityCuratorRAGFlow Curator
andauthored
Synchronize documentation. (#560)
Co-authored-by: RAGFlow Curator <infinitydocs.curator@users.noreply.github.com>
1 parent 0e46a49 commit 11f59a8

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

website/docs/guides/agent/agent_component_reference/retrieval.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ Before enabling this feature, ensure you have properly [constructed a knowledge
133133

134134
Whether to use knowledge graph(s) in the specified dataset(s) during retrieval for multi-hop question answering. When enabled, this would involve iterative searches across entity, relationship, and community report chunks, greatly increasing retrieval time.
135135

136+
### PageIndex
137+
138+
Whether to use the page index structure generated by the large model to enhance retrieval. This approach mimics human information-searching behavior in books.
139+
136140
### Output
137141

138142
The global variable name for the output of the **Retrieval** component, which can be referenced by other components in the workflow.

website/docs/guides/dataset/extract_table_of_contents.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ sidebar_custom_props: {
77
---
88
# Extract table of contents
99

10-
Extract table of contents (TOC) from documents to provide long context RAG and improve retrieval.
10+
Extract PageIndex, namely table of contents, from documents to provide long context RAG and improve retrieval.
1111

1212
---
1313

14-
During indexing, this technique uses LLM to extract and generate chapter information, which is added to each chunk to provide sufficient global context. At the retrieval stage, it first uses the chunks matched by search, then supplements missing chunks based on the table of contents structure. This addresses issues caused by chunk fragmentation and insufficient context, improving answer quality.
14+
During indexing, this technique uses LLM to extract and generate chapter information, which is added to each chunk to provide sufficient global context. At the retrieval stage, it first uses the chunks matched by search, then supplements missing chunks based on the PageIndex (table of contents) structure. This addresses issues caused by chunk fragmentation and insufficient context, improving answer quality.
1515

1616
:::danger WARNING
17-
Enabling TOC extraction requires significant memory, computational resources, and tokens.
17+
Enabling PageIndex extraction requires significant memory, computational resources, and tokens.
1818
:::
1919

2020
## Prerequisites
@@ -27,15 +27,15 @@ The system's default chat model is used to summarize clustered content. Before p
2727

2828
1. Navigate to the **Configuration** page.
2929

30-
2. Enable **TOC Enhance**.
30+
2. Enable **PageIndex**.
3131

3232
3. To use this technique during retrieval, do either of the following:
3333

34-
- In the **Chat setting** panel of your chat app, switch on the **TOC Enhance** toggle.
35-
- If you are using an agent, click the **Retrieval** agent component to specify the dataset(s) and switch on the **TOC Enhance** toggle.
34+
- In the **Chat setting** panel of your chat app, switch on the **PageIndex** toggle.
35+
- If you are using an agent, click the **Retrieval** agent component to specify the dataset(s) and switch on the **Page Index** toggle.
3636

3737
## Frequently asked questions
3838

39-
### Will previously parsed files be searched using the TOC enhancement feature once I enable `TOC Enhance`?
39+
### Will previously parsed files be searched using the directory enhancement feature once I enable `PageIndex`?
4040

41-
No. Only files parsed after you enable **TOC Enhance** will be searched using the TOC enhancement feature. To apply this feature to files parsed before enabling **TOC Enhance**, you must reparse them.
41+
No. Only files parsed after you enable **PageIndex** will be searched using the directory enhancement feature. To apply this feature to files parsed before enabling **PageIndex**, you must reparse them.

website/docs/guides/memory/_category_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"label": "Memory",
3-
"position": 10,
3+
"position": 3.5,
44
"link": {
55
"type": "generated-index",
66
"description": "Guides on using Memory."

0 commit comments

Comments
 (0)