Design the base interface of vector store, and apply it to the Chroma Vector Store (wrapped around llama_index's implementation). Provide the pipelines to populate and retrieve from vector store.
5 lines
124 B
Python
5 lines
124 B
Python
from .base import BaseVectorStore
|
|
from .chroma import ChromaVectorStore
|
|
|
|
__all__ = ["BaseVectorStore", "ChromaVectorStore"]
|