Skip to content

Commit 90e274b

Browse files
committed
bug fix
1 parent 6bb3522 commit 90e274b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama_cpp/llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def tokenize(self, text: bytes, add_bos: bool = True) -> List[int]:
430430
n_tokens = llama_cpp.llama_tokenize_with_model(
431431
self.model,
432432
text,
433-
len(text)
433+
len(text),
434434
tokens,
435435
n_ctx,
436436
add_bos,

0 commit comments

Comments
 (0)