From 80736c556b153d944cc5bb93b7e35bef9aa4dbf7 Mon Sep 17 00:00:00 2001 From: Olivier Chafik Date: Wed, 1 May 2024 01:55:09 +0100 Subject: [PATCH] Update llama.cpp Co-authored-by: Clint Herron --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index e7ce0fbb2..df3815945 100644 --- a/llama.cpp +++ b/llama.cpp @@ -15730,7 +15730,7 @@ struct llama_context * llama_new_context_with_model( } } - // cache tokens & their decoded codepoints (for common case where there's no partial utf8 prefix bytes) for grammar constrained sampling. + // cache tokens & their decoded codepoints (for common case where there's no partial utf8 prefix bytes) for grammar-constrained sampling. { auto n_vocab = llama_n_vocab(llama_get_model(ctx)); ctx->token_codepoints_without_partial_utf8_prefix.resize(n_vocab);