diff --git a/src/llama.cpp b/src/llama.cpp index 12b8c54a5..1e730823c 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -6459,7 +6459,7 @@ static void llm_load_vocab( GGML_ASSERT(!ids.empty() && "model vocab missing newline token"); vocab.linefeed_id = ids[0]; } else { - const std::vector ids = llama_tokenize_internal(model.vocab, "\xC4\x8A", false); // U+010A + const std::vector ids = llama_tokenize_internal(vocab, "\xC4\x8A", false); // U+010A GGML_ASSERT(!ids.empty() && "model vocab missing newline token"); vocab.linefeed_id = ids[0]; }