Skip to content

Commit 8f7211c

Browse files
committed
Correct incorrect assignments in llama.py
1 parent 3e00e8e commit 8f7211c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

llama_cpp/llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ def __init__(
435435
internals.LlamaBatch(
436436
n_tokens=self.n_batch,
437437
embd=0,
438-
n_seq_max=self.context_params.n_ctx,
438+
n_seq_max=self.context_params.n_seq_max,
439439
verbose=self.verbose,
440440
)
441441
)

0 commit comments

Comments
 (0)