Explicitly make all init params other than model_path into keyword only params

This commit is contained in:
Andrei Betlen 2023-09-13 21:19:47 -04:00
parent a68f9e2791
commit c8f9b8a734

View file

@ -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,