Files
t6_mem0/embedchain/vectordb/base_vector_db.py

10 lines
293 B
Python

class BaseVectorDB:
def __init__(self):
self.client = self._get_or_create_db()
self.collection = self._get_or_create_collection()
def _get_or_create_db(self):
raise NotImplementedError
def _get_or_create_collection(self):
raise NotImplementedError