From 4021eb838e40bb242c997d3a4a70be4ac7fb9968 Mon Sep 17 00:00:00 2001 From: Branden Chan <33759007+brandenchan@users.noreply.github.com> Date: Tue, 31 Aug 2021 15:23:06 +0200 Subject: [PATCH] Add weaviate to init (#1379) --- haystack/document_store/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/haystack/document_store/__init__.py b/haystack/document_store/__init__.py index cf89da7de..caa551ab3 100644 --- a/haystack/document_store/__init__.py +++ b/haystack/document_store/__init__.py @@ -3,3 +3,4 @@ from haystack.document_store.faiss import FAISSDocumentStore from haystack.document_store.memory import InMemoryDocumentStore from haystack.document_store.milvus import MilvusDocumentStore from haystack.document_store.sql import SQLDocumentStore +from haystack.document_store.weaviate import WeaviateDocumentStore