Skip to content

Commit a19068b

Browse files
committed
Fix missing ;
1 parent c3d646a commit a19068b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

examples/models/llama/main.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,12 @@ DEFINE_int32(
4545
DEFINE_int32(
4646
num_bos,
4747
0,
48-
"Number of BOS tokens to prepend to the prompt. Defaults to 0. If > 0, the prompt will be prepended with BOS tokens. This is useful for models that expect one or more BOS token at the start."
49-
)
48+
"Number of BOS tokens to prepend to the prompt. Defaults to 0. If > 0, the prompt will be prepended with BOS tokens. This is useful for models that expect one or more BOS token at the start.");
5049

5150
DEFINE_int32(
5251
num_eos,
5352
0,
54-
"Number of EOS tokens to append to the prompt. Defaults to 0. If > 0, the prompt will be appended with EOS tokens. This is useful for models that expect one or more EOS token at the end."
55-
)
53+
"Number of EOS tokens to append to the prompt. Defaults to 0. If > 0, the prompt will be appended with EOS tokens. This is useful for models that expect one or more EOS token at the end.");
5654

5755
DEFINE_bool(warmup, false, "Whether to run a warmup run.");
5856

0 commit comments

Comments
 (0)