Add core version to server startup splash screen

This commit is contained in:
yangdx
2025-03-28 08:20:55 +08:00
parent afdf3a8b0b
commit cce91bdd5a

View File

@@ -8,7 +8,8 @@ from typing import Optional, List, Tuple
import sys import sys
from ascii_colors import ASCIIColors from ascii_colors import ASCIIColors
import logging import logging
from lightrag.api import __api_version__ from lightrag.api import __api_version__ as api_version
from lightrag import __version__ as core_version
from fastapi import HTTPException, Security, Request, status from fastapi import HTTPException, Security, Request, status
from dotenv import load_dotenv from dotenv import load_dotenv
from fastapi.security import APIKeyHeader, OAuth2PasswordBearer from fastapi.security import APIKeyHeader, OAuth2PasswordBearer
@@ -488,7 +489,7 @@ def display_splash_screen(args: argparse.Namespace) -> None:
# Banner # Banner
ASCIIColors.cyan(f""" ASCIIColors.cyan(f"""
╔══════════════════════════════════════════════════════════════╗ ╔══════════════════════════════════════════════════════════════╗
║ 🚀 LightRAG Server v{__api_version__} ║ 🚀 LightRAG Server v{core_version}/{api_version}
║ Fast, Lightweight RAG Server Implementation ║ ║ Fast, Lightweight RAG Server Implementation ║
╚══════════════════════════════════════════════════════════════╝ ╚══════════════════════════════════════════════════════════════╝
""") """)