fix startup.py
This commit is contained in:
parent
5ec512801f
commit
4278d1e000
|
|
@ -253,19 +253,19 @@ def parse_args() -> argparse.ArgumentParser:
|
||||||
"--all-webui",
|
"--all-webui",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
|
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
|
||||||
dest="all",
|
dest="all_webui",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--all-api",
|
"--all-api",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
|
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
|
||||||
dest="all",
|
dest="all_api",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--llm-api",
|
"--llm-api",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
|
help="run fastchat's controller/model_worker/openai_api servers, run api.py and webui.py",
|
||||||
dest="all",
|
dest="llm_api",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-o",
|
"-o",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue