From ac5c8e964fbb4cb90330bda85cf3b3d3976c6918 Mon Sep 17 00:00:00 2001 From: Aaron Miller Date: Fri, 30 Jun 2023 14:00:42 -0700 Subject: [PATCH] bindings/python: fix typo (#1111) --- gpt4all-bindings/python/gpt4all/gpt4all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-bindings/python/gpt4all/gpt4all.py b/gpt4all-bindings/python/gpt4all/gpt4all.py index 4dc0fc6f..5410228e 100644 --- a/gpt4all-bindings/python/gpt4all/gpt4all.py +++ b/gpt4all-bindings/python/gpt4all/gpt4all.py @@ -196,7 +196,7 @@ class GPT4All: repeat_penalty: Penalize the model for repetition. Higher values result in less repetition. repeat_last_n: How far in the models generation history to apply the repeat penalty. n_batch: Number of prompt tokens processed in parallel. Larger values decrease latency but increase resource requirements. - n_predict: Equivalent to max_tokens, exists for backwards compatability. + n_predict: Equivalent to max_tokens, exists for backwards compatibility. streaming: If True, this method will instead return a generator that yields tokens as the model generates them. Returns: