mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-28 11:19:58 +00:00
32 lines
690 B
YAML
32 lines
690 B
YAML
![]() |
version: '0.7'
|
||
|
|
||
|
components:
|
||
|
- name: DPRRetriever
|
||
|
type: DensePassageRetriever
|
||
|
params:
|
||
|
document_store: NewFAISSDocumentStore
|
||
|
- name: PDFConverter
|
||
|
type: PDFToTextConverter
|
||
|
params:
|
||
|
remove_numeric_tables: false
|
||
|
- name: Preprocessor
|
||
|
type: PreProcessor
|
||
|
params:
|
||
|
clean_whitespace: true
|
||
|
- name: NewFAISSDocumentStore
|
||
|
type: FAISSDocumentStore
|
||
|
|
||
|
|
||
|
pipelines:
|
||
|
- name: indexing_pipeline
|
||
|
type: Pipeline
|
||
|
nodes:
|
||
|
- name: PDFConverter
|
||
|
inputs: [File]
|
||
|
- name: Preprocessor
|
||
|
inputs: [PDFConverter]
|
||
|
- name: DPRRetriever
|
||
|
inputs: [Preprocessor]
|
||
|
- name: NewFAISSDocumentStore
|
||
|
inputs: [DPRRetriever]
|