显示 Helm Chart 值

helm show values dify/dify

这是 Helm chart 值中 RAG 配置的示例。

global:
  rag:
    # RAG ETL type, support: dify or Unstructured
    etlType: "Unstructured"
    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 文件提取方案
  • dify: Dify 的专有文件提取方案

显示 Helm Chart 值

helm show values dify/dify

这是 Helm chart 值中 RAG 配置的示例。

global:
  rag:
    # RAG ETL type, support: dify or Unstructured
    etlType: "Unstructured"
    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 文件提取方案
  • dify: Dify 的专有文件提取方案