fix(storage): Fix storage connector error (#1547)

Co-authored-by: dong <dongzhancai@iie2.com>
Co-authored-by: Zhancai Dong <dongzhancai1@jd.com>
Co-authored-by: aries_ckt <916701291@qq.com>
This commit is contained in:
Cooper
2024-05-30 22:02:18 +08:00
committed by GitHub
parent a88af6f87d
commit 04703f2b3a
4 changed files with 30 additions and 33 deletions

View File

@@ -109,6 +109,10 @@ class IndexStoreBase(ABC):
index_name(str): The name of index to delete.
"""
def vector_name_exists(self) -> bool:
"""Whether name exists."""
return True
def load_document_with_limit(
self, chunks: List[Chunk], max_chunks_once_load: int = 10, max_threads: int = 1
) -> List[str]: