mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
fix: unify naming
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user