Skip to content

Commit 1e14b14

Browse files
ngxsonishaangandhi
authored andcommitted
Update examples/server/server.cpp
1 parent cc53039 commit 1e14b14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,7 @@ struct server_context {
20442044
const llama_model * model = llama_get_model(ctx);
20452045
const llama_vocab * vocab = llama_model_get_vocab(model);
20462046
const int32_t n_vocab = llama_vocab_n_tokens(vocab);
2047-
for (const auto& token : tokens) {
2047+
for (const auto & token : tokens) {
20482048
if (token < 0 || token >= n_vocab) {
20492049
return false;
20502050
}

0 commit comments

Comments
 (0)