chore: finalize backend feature scope

This commit is contained in:
刘金宝
2026-06-11 16:19:07 +08:00
parent d855ecab82
commit ec515d5453
43 changed files with 680 additions and 712 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ class MilvusVectorStore:
index_params=index_params,
consistency_level="Strong",
)
except Exception as exc: # pragma: no cover - 真实 Milvus 由联调环境验证
except Exception as exc: # pragma: no cover - 真实 Milvus 由集成环境验证
raise AppError("MILVUS_COLLECTION_INIT_FAILED", "milvus collection init failed", 502) from exc
def upsert_vectors(self, collection_name: str, vectors: list[tuple[str, list[float]]]) -> None: