mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-01 10:19:23 +00:00
* fix all eof * fix test * fix test * fix test * typo * fix sample * fix sample * add logs * fix page_dynamic_result.txt
38 lines
804 B
YAML
38 lines
804 B
YAML
version: 'ignore'
|
|
|
|
components:
|
|
- name: TestReader
|
|
type: MockReader
|
|
- name: TestRetriever
|
|
type: MockRetriever
|
|
params:
|
|
document_store: TestDocumentStore
|
|
- name: TestDocumentStore
|
|
type: MockDocumentStore
|
|
- name: TestPreprocessor
|
|
type: PreProcessor
|
|
params:
|
|
clean_whitespace: true
|
|
- name: TestPDFConverter
|
|
type: MockPDFToTextConverter
|
|
params:
|
|
remove_numeric_tables: false
|
|
|
|
|
|
pipelines:
|
|
- name: test-query
|
|
nodes:
|
|
- name: TestRetriever
|
|
inputs: [Query]
|
|
- name: TestReader
|
|
inputs: [TestRetriever]
|
|
|
|
- name: test-indexing
|
|
nodes:
|
|
- name: TestPDFConverter
|
|
inputs: [File]
|
|
- name: TestPreprocessor
|
|
inputs: [TestPDFConverter]
|
|
- name: TestDocumentStore
|
|
inputs: [TestPreprocessor]
|