* Modify docstore and vectorstore objects to be reconstructable * Simplify the file docstore * Use the simple file docstore and vector store in MVP
12 lines
318 B
Python
12 lines
318 B
Python
from .base import BaseDocumentStore
|
|
from .elasticsearch import ElasticsearchDocumentStore
|
|
from .in_memory import InMemoryDocumentStore
|
|
from .simple_file import SimpleFileDocumentStore
|
|
|
|
__all__ = [
|
|
"BaseDocumentStore",
|
|
"InMemoryDocumentStore",
|
|
"ElasticsearchDocumentStore",
|
|
"SimpleFileDocumentStore",
|
|
]
|