mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-08-03 22:28:22 +00:00

* Change exception into warning, add strict_version param, and remove compatibility between schemas * Simplify update_json_schema * Rename unstable into master * Prevent validate_config from changing the config to validate * Fix version validation and add tests * Rename master into ignore * Complete parameter rename Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
31 lines
672 B
YAML
31 lines
672 B
YAML
version: ignore
|
|
|
|
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
|
|
nodes:
|
|
- name: PDFConverter
|
|
inputs: [File]
|
|
- name: Preprocessor
|
|
inputs: [PDFConverter]
|
|
- name: DPRRetriever
|
|
inputs: [Preprocessor]
|
|
- name: NewFAISSDocumentStore
|
|
inputs: [DPRRetriever]
|