Skip to content

Commit 9655b17

Browse files
Apply suggestion from @gemini-code-assist[bot]
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent ba324bd commit 9655b17

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lightllm/server/api_cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ def make_argument_parser() -> argparse.ArgumentParser:
136136
"--chat_template",
137137
type=str,
138138
default=None,
139-
help="chat template jinja file path"
140-
"lightllm/common/chat_template/tool_chat_template_deepseekv31.jinja"
141-
"lightllm/common/chat_template/tool_chat_template_deepseekv32.jinja"
142-
"lightllm/common/chat_template/tool_chat_template_qwen.jinja"
143-
"lightllm/common/chat_template/tool_chat_template_deepseekr1.jinja",
139+
help=("chat template jinja file path. For example:\n"
140+
"- lightllm/common/chat_template/tool_chat_template_deepseekv31.jinja\n"
141+
"- lightllm/common/chat_template/tool_chat_template_deepseekv32.jinja\n"
142+
"- lightllm/common/chat_template/tool_chat_template_qwen.jinja\n"
143+
"- lightllm/common/chat_template/tool_chat_template_deepseekr1.jinja"),
144144
)
145145
parser.add_argument(
146146
"--running_max_req_size", type=int, default=1000, help="the max size for forward requests in the same time"

0 commit comments

Comments
 (0)