fix startup.py

This commit is contained in:
liunux4odoo 2023-08-17 21:54:48 +08:00
parent 5ec512801f
commit 4278d1e000
1 changed files with 3 additions and 3 deletions

View File

@ -253,19 +253,19 @@ def parse_args() -> argparse.ArgumentParser:
"--all-webui",
action="store_true",
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
dest="all",
dest="all_webui",
)
parser.add_argument(
"--all-api",
action="store_true",
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
dest="all",
dest="all_api",
)
parser.add_argument(
"--llm-api",
action="store_true",
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
dest="all",
dest="llm_api",
)
parser.add_argument(
"-o",