[Feature] add app.delete() method (#1187)

Co-authored-by: Deven Patel <deven298@yahoo.com>
This commit is contained in:
Deven Patel
2024-01-23 14:27:30 +05:30
committed by GitHub
parent 2d9fbd4e49
commit b7d365119c
3 changed files with 48 additions and 2 deletions

View File

@@ -75,3 +75,8 @@ class BaseVectorDB(JSONSerializable):
:type name: str
"""
raise NotImplementedError
def delete(self):
"""Delete from database."""
raise NotImplementedError