> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# RAG

## Helmチャートの値を表示する

```bash theme={null}
helm show values dify/dify
```

## Helmチャートの値におけるRAG設定の例

以下は、Helmチャートの値に含まれるRAG設定の一例です。

```yaml theme={null}
global:
  rag:
    # RAG ETL type, support: dify or Unstructured
    etlType: "dify"
    keywordDataSourceType: "object_storage"
    # The maximum number of top-k value for RAG.
    topKMaxValue: 10
    # Configuration for document chunk length. It is used to control the size of text segments when processing long documents.
    indexingMaxSegmentationTokensLength: 4000
  ... ...
```

## `global.rag.etlType` フィールドの選択肢

* Unstructured: [Unstructured.io](https://unstructured.io/) によるファイル抽出ソリューション
* dify: Difyのカスタムファイル抽出ソリューション
