Merge pull request #765 from danielaskdd/hotfix-typo-error

Fix typos in documentation tree structure and storage check rules
This commit is contained in:
zrguo
2025-02-14 09:36:59 +08:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -247,11 +247,11 @@ def display_splash_screen(args: argparse.Namespace) -> None:
ASCIIColors.yellow(f"{protocol}://<your-ip-address>:{args.port}") ASCIIColors.yellow(f"{protocol}://<your-ip-address>:{args.port}")
ASCIIColors.white(" ├─ API Documentation (local): ", end="") ASCIIColors.white(" ├─ API Documentation (local): ", end="")
ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/docs") ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/docs")
ASCIIColors.white(" ─ Alternative Documentation (local): ", end="") ASCIIColors.white(" ─ Alternative Documentation (local): ", end="")
ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/redoc") ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/redoc")
ASCIIColors.white(" ├─ WebUI (local): ", end="") ASCIIColors.white(" ├─ WebUI (local): ", end="")
ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/webui") ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/webui")
ASCIIColors.white(" ─ Graph Viewer (local): ", end="") ASCIIColors.white(" ─ Graph Viewer (local): ", end="")
ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/graph-viewer") ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/graph-viewer")
ASCIIColors.yellow("\n📝 Note:") ASCIIColors.yellow("\n📝 Note:")

View File

@@ -69,7 +69,7 @@ STORAGE_IMPLEMENTATIONS = {
"VECTOR_STORAGE": { "VECTOR_STORAGE": {
"implementations": [ "implementations": [
"NanoVectorDBStorage", "NanoVectorDBStorage",
"MilvusVectorDBStorge", "MilvusVectorDBStorage",
"ChromaVectorDBStorage", "ChromaVectorDBStorage",
"TiDBVectorDBStorage", "TiDBVectorDBStorage",
"PGVectorStorage", "PGVectorStorage",
@@ -123,7 +123,7 @@ STORAGE_ENV_REQUIREMENTS = {
], ],
# Vector Storage Implementations # Vector Storage Implementations
"NanoVectorDBStorage": [], "NanoVectorDBStorage": [],
"MilvusVectorDBStorge": [], "MilvusVectorDBStorage": [],
"ChromaVectorDBStorage": [], "ChromaVectorDBStorage": [],
"TiDBVectorDBStorage": ["TIDB_USER", "TIDB_PASSWORD", "TIDB_DATABASE"], "TiDBVectorDBStorage": ["TIDB_USER", "TIDB_PASSWORD", "TIDB_DATABASE"],
"PGVectorStorage": ["POSTGRES_USER", "POSTGRES_PASSWORD", "POSTGRES_DATABASE"], "PGVectorStorage": ["POSTGRES_USER", "POSTGRES_PASSWORD", "POSTGRES_DATABASE"],