[AUR-362] Add In-memory vector store (#22)

* [AUR-362] Add In-memory vector store

* [AUR-362] fix delete fun input format

* [AUR-362] revise persist and from persist path to save and load

* [AUR-362] revise simple.py to in_memory.py
This commit is contained in:
cin-jacky
2023-09-20 17:51:50 +09:00
committed by GitHub
parent b794051653
commit c329c4c03f
4 changed files with 104 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
from .base import BaseVectorStore
from .chroma import ChromaVectorStore
from .in_memory import InMemoryVectorStore
__all__ = ["BaseVectorStore", "ChromaVectorStore"]
__all__ = ["BaseVectorStore", "ChromaVectorStore", "InMemoryVectorStore"]