Class swarmauri_core.vector_stores.IPersistentVectorStore.IPersistentVectorStore
swarmauri_core.vector_stores.IPersistentVectorStore.IPersistentVectorStore
Bases: ABC
Interface for a persitent-based vector store responsible for storing, indexing, and retrieving documents.
connect
abstractmethod
connect()
Connects to the persistent-based vector store using provided credentials.
Source code in swarmauri_core/vector_stores/IPersistentVectorStore.py
9 10 11 12 13 14 | |
disconnect
abstractmethod
disconnect()
Disconnects from the persistent-based vector store.
Source code in swarmauri_core/vector_stores/IPersistentVectorStore.py
16 17 18 19 20 21 | |