mirror of
				https://github.com/deepset-ai/haystack.git
				synced 2025-11-03 19:29:32 +00:00 
			
		
		
		
	* stop loading FAISS and InMem doc Store for indexing pipelines * pylint fix * Addressed comments
		
			
				
	
	
		
			26 lines
		
	
	
		
			559 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			559 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: 'ignore'
 | 
						|
 | 
						|
components:
 | 
						|
  - name: InMemoryDocumentStore
 | 
						|
    type: InMemoryDocumentStore
 | 
						|
  - name: tfidf_ret
 | 
						|
    params:
 | 
						|
      document_store: InMemoryDocumentStore
 | 
						|
    type: TfidfRetriever
 | 
						|
  - name: TextFileConverter
 | 
						|
    type: TextConverter
 | 
						|
pipelines:
 | 
						|
  - name: query
 | 
						|
    nodes:
 | 
						|
      - inputs:
 | 
						|
          - Query
 | 
						|
        name: tfidf_ret
 | 
						|
  - name: indexing
 | 
						|
    nodes:
 | 
						|
      - name: TextFileConverter
 | 
						|
        inputs: [ File ]
 | 
						|
      - name: tfidf_ret
 | 
						|
        inputs: [ TextFileConverter ]
 | 
						|
      - name: InMemoryDocumentStore
 | 
						|
        inputs: [ tfidf_ret ]
 |