refactor: 去重删除逻辑统一到 VectorDB.delete_by_source

This commit is contained in:
2026-07-10 15:27:52 +08:00
parent ebfae1f60c
commit 3308636086
6 changed files with 34 additions and 32 deletions
+4 -5
View File
@@ -1,11 +1,10 @@
"""便捷启动脚本 — 已废弃, 请使用 `uv run md-vector-db serve`."""
import sys
import uvicorn
import warnings
warnings.warn(
"scripts/serve.py 已废弃, 请使用 `uv run md-vector-db serve`",
DeprecationWarning,
stacklevel=2,
print(
"[废弃] scripts/serve.py 已废弃, 请使用 `uv run md-vector-db serve`",
file=sys.stderr,
)
if __name__ == "__main__":