* Modify docstore and vectorstore objects to be reconstructable * Simplify the file docstore * Use the simple file docstore and vector store in MVP
12 lines
281 B
Python
12 lines
281 B
Python
from .base import BaseVectorStore
|
|
from .chroma import ChromaVectorStore
|
|
from .in_memory import InMemoryVectorStore
|
|
from .simple_file import SimpleFileVectorStore
|
|
|
|
__all__ = [
|
|
"BaseVectorStore",
|
|
"ChromaVectorStore",
|
|
"InMemoryVectorStore",
|
|
"SimpleFileVectorStore",
|
|
]
|