mirror of
				https://github.com/deepset-ai/haystack.git
				synced 2025-10-31 17:59:27 +00:00 
			
		
		
		
	 e1ec4e5e4d
			
		
	
	
		e1ec4e5e4d
		
			
		
	
	
	
	
		
			
			* remove symbols under the haystack.document_stores namespace * Update haystack/document_stores/types/protocol.py Co-authored-by: Silvano Cerza <3314350+silvanocerza@users.noreply.github.com> * fix * same for retrievers * leftovers * more leftovers * add relnote * leftovers * one more * fix examples --------- Co-authored-by: Silvano Cerza <3314350+silvanocerza@users.noreply.github.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			566 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			566 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| upgrade:
 | |
|   - |
 | |
|     Change the imports for in_memory document store and retrievers from:
 | |
| 
 | |
|         from haystack.document_stores import InMemoryDocumentStore
 | |
|         from haystack.components.retrievers import InMemoryEmbeddingRetriever
 | |
| 
 | |
|     to:
 | |
| 
 | |
|         from haystack.document_stores.in_memory import InMemoryDocumentStore
 | |
|         from haystack.components.retrievers.in_memory import InMemoryBM25Retriever
 | |
| 
 | |
| enhancements:
 | |
|   - |
 | |
|     Stop exposing `in_memory` package symbols in the `haystack.document_store` and
 | |
|     `haystack.components.retrievers` root namespaces.
 |