from .models.DB_model import DBInterface; class ChromaDB(DBInterface): def __init__(self): super().__init__() def connect(self): def disconnect(self): raise NotImplementedError def execute(self, command, parameters): raise NotImplementedError