fix: unify naming

This commit is contained in:
Li Xin
2025-05-08 08:59:18 +08:00
parent 867a158c6b
commit daf2e57f14
3 changed files with 9 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# SPDX-License-Identifier: MIT
"""
Server script for running the Deer API.
Server script for running the DeerFlow API.
"""
import argparse
@@ -20,7 +20,7 @@ logger = logging.getLogger(__name__)
if __name__ == "__main__":
# Parse command line arguments
parser = argparse.ArgumentParser(description="Run the Deer API server")
parser = argparse.ArgumentParser(description="Run the DeerFlow API server")
parser.add_argument(
"--reload",
action="store_true",
@@ -55,7 +55,7 @@ if __name__ == "__main__":
if args.reload:
reload = True
logger.info("Starting Deer API server")
logger.info("Starting DeerFlow API server")
uvicorn.run(
"src.server:app",
host=args.host,