8000 fix · hackensun/llama-cpp-python@1e844d3 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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)
0