Explicitly make all init params other than model_path into keyword only params
This commit is contained in:
parent
a68f9e2791
commit
c8f9b8a734
1 changed files with 1 additions and 0 deletions
|
@ -212,6 +212,7 @@ class Llama:
|
|||
def __init__(
|
||||
self,
|
||||
model_path: str,
|
||||
*,
|
||||
# NOTE: These parameters are likely to change in the future.
|
||||
n_ctx: int = 512,
|
||||
n_parts: int = -1,
|
||||
|
|
Loading…
Reference in a new issue