Add kwargs to init to catch extra params
This commit is contained in:
parent
9e345a47a2
commit
a68f9e2791
1 changed files with 1 additions and 0 deletions
|
@ -236,6 +236,7 @@ class Llama:
|
||||||
rms_norm_eps: Optional[float] = None, # (TEMPORARY)
|
rms_norm_eps: Optional[float] = None, # (TEMPORARY)
|
||||||
mul_mat_q: Optional[bool] = None,
|
mul_mat_q: Optional[bool] = None,
|
||||||
verbose: bool = True,
|
verbose: bool = True,
|
||||||
|
**kwargs # type: ignore
|
||||||
):
|
):
|
||||||
"""Load a llama.cpp model from `model_path`.
|
"""Load a llama.cpp model from `model_path`.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue