Skip to content

Commit 1e844d3

Browse files
committed
fix
1 parent 843b7cc commit 1e844d3

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
@@ -230,7 +230,7 @@ def __init__(
230230
grammar: Optional[Union[str, Path]] = None,
231231
n_gqa: Optional[int] = None, # (TEMPORARY) must be 8 for llama2 70b
232232
rms_norm_eps: Optional[float] = None, # (TEMPORARY)
233-
mul_mat_q: Optional(bool) = None, # (TEMPORARY)
233+
mul_mat_q: Optional[bool] = None, # (TEMPORARY)
234234
verbose: bool = True,
235235
):
236236
"""Load a llama.cpp model from `model_path`.

0 commit comments

Comments
 (0)