From b6c390777a34ec2611f25fd71cccb747b2b5c465 Mon Sep 17 00:00:00 2001 From: lehug Date: Wed, 20 Sep 2023 10:38:50 +0800 Subject: [PATCH] fix argument name in help text (#1532) --- server/llm_api_stale.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/llm_api_stale.py b/server/llm_api_stale.py index cb02e0d..f0ac9a4 100644 --- a/server/llm_api_stale.py +++ b/server/llm_api_stale.py @@ -26,7 +26,7 @@ parser.add_argument('--model-path-address', default="THUDM/chatglm2-6b@localhost@20002", nargs="+", type=str, - help="model path, host, and port, formatted as model-path@host@path") + help="model path, host, and port, formatted as model-path@host@port") # ---------------controller------------------------- parser.add_argument("--controller-host", type=str, default="localhost")