fix:storage add collection

This commit is contained in:
aries_ckt
2025-04-12 14:18:12 +08:00
parent ae4112cf35
commit 5d67f166d9
4 changed files with 76 additions and 55 deletions

View File

@@ -176,3 +176,7 @@ class VectorStoreBase(IndexStoreBase, ABC):
def truncate(self) -> List[str]:
"""Truncate the collection."""
raise NotImplementedError
def create_collection(self, collection_name: str, **kwargs) -> Any:
"""Create the collection."""
raise NotImplementedError