mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-24 17:30:38 +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
17 lines
307 B
YAML
17 lines
307 B
YAML
version: 'ignore'
|
|
|
|
components:
|
|
- name: InMemoryDocumentStore
|
|
params: {}
|
|
type: InMemoryDocumentStore
|
|
- name: tfidf_ret
|
|
params:
|
|
document_store: InMemoryDocumentStore
|
|
type: TfidfRetriever
|
|
pipelines:
|
|
- name: query
|
|
nodes:
|
|
- inputs:
|
|
- Query
|
|
name: tfidf_ret
|