Showing
2 changed files
with
18 additions
and
0 deletions
| @@ -28,3 +28,10 @@ class VectorDBClient(ABC): | @@ -28,3 +28,10 @@ class VectorDBClient(ABC): | ||
| 28 | bool: 连接正常返回True,否则返回False | 28 | bool: 连接正常返回True,否则返回False |
| 29 | """ | 29 | """ |
| 30 | pass | 30 | pass |
| 31 | + | ||
| 32 | + | ||
| 33 | +class TableInit(ABC): | ||
| 34 | + | ||
| 35 | + @abstractmethod | ||
| 36 | + async def create_table(self, name, embedding_version, embedding_dim) -> None: | ||
| 37 | + pass |
-
Please register or login to post a comment