Skip to content

Commit cd145b1

Browse files
authored
Update src/llama.cpp
1 parent 95e433c commit cd145b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6459,7 +6459,7 @@ static void llm_load_vocab(
64596459
GGML_ASSERT(!ids.empty() && "model vocab missing newline token");
64606460
vocab.linefeed_id = ids[0];
64616461
} else {
6462-
const std::vector<int> ids = llama_tokenize_internal(model.vocab, "\xC4\x8A", false); // U+010A
6462+
const std::vector<int> ids = llama_tokenize_internal(vocab, "\xC4\x8A", false); // U+010A
64636463
GGML_ASSERT(!ids.empty() && "model vocab missing newline token");
64646464
vocab.linefeed_id = ids[0];
64656465
}

0 commit comments

Comments
 (0)