Skip to content

Commit f105471

Browse files
committed
server : fix newlines in help (#5785)
1 parent 38d1521 commit f105471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/server/server.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2080,8 +2080,8 @@ static void server_print_usage(const char *argv0, const gpt_params &params,
20802080
printf(" --override-kv KEY=TYPE:VALUE\n");
20812081
printf(" advanced option to override model metadata by key. may be specified multiple times.\n");
20822082
printf(" types: int, float, bool. example: --override-kv tokenizer.ggml.add_bos_token=bool:false\n");
2083-
printf(" -gan N, --grp-attn-n N set the group attention factor to extend context size through self-extend(default: 1=disabled), used together with group attention width `--grp-attn-w`");
2084-
printf(" -gaw N, --grp-attn-w N set the group attention width to extend context size through self-extend(default: 512), used together with group attention factor `--grp-attn-n`");
2083+
printf(" -gan N, --grp-attn-n N set the group attention factor to extend context size through self-extend(default: 1=disabled), used together with group attention width `--grp-attn-w`\n");
2084+
printf(" -gaw N, --grp-attn-w N set the group attention width to extend context size through self-extend(default: 512), used together with group attention factor `--grp-attn-n`\n");
20852085
printf(" --chat-template JINJA_TEMPLATE\n");
20862086
printf(" set custom jinja chat template (default: template taken from model's metadata)\n");
20872087
printf(" Note: only commonly used templates are accepted, since we don't have jinja parser\n");

0 commit comments

Comments
 (0)