* add Elasticsearch Docstore * update missing requirements * add docstore * [ignore cache] update default param * update docstring
18 lines
411 B
Python
18 lines
411 B
Python
from .docstores import (
|
|
BaseDocumentStore,
|
|
ElasticsearchDocumentStore,
|
|
InMemoryDocumentStore,
|
|
)
|
|
from .vectorstores import BaseVectorStore, ChromaVectorStore, InMemoryVectorStore
|
|
|
|
__all__ = [
|
|
# Document stores
|
|
"BaseDocumentStore",
|
|
"InMemoryDocumentStore",
|
|
"ElasticsearchDocumentStore",
|
|
# Vector stores
|
|
"BaseVectorStore",
|
|
"ChromaVectorStore",
|
|
"InMemoryVectorStore",
|
|
]
|