mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-01 18:29:32 +00:00
* Allowing InMemStore and FAISSDocStore for indexing using single worker YAML config * unified pipeline & doc store loading * fix pylint warning * separated tests * removed unnecessay caplog
18 lines
335 B
YAML
18 lines
335 B
YAML
version: 'ignore'
|
|
|
|
components:
|
|
- name: InMemoryDocumentStore
|
|
params: {}
|
|
# Wrong DocumentStore Type
|
|
type: MyOwnDocumentStore
|
|
- name: tfidf_ret
|
|
params:
|
|
document_store: InMemoryDocumentStore
|
|
type: TfidfRetriever
|
|
pipelines:
|
|
- name: query
|
|
nodes:
|
|
- inputs:
|
|
- Query
|
|
name: tfidf_ret
|