From 9c6b2e09119c6200a06602d656be5a78b55b89f1 Mon Sep 17 00:00:00 2001 From: NeonBohdan Date: Mon, 6 Nov 2023 15:00:00 +0200 Subject: [PATCH] Removed num_parallel_processes from LLM class --- neon_llm_chatgpt/chatgpt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/neon_llm_chatgpt/chatgpt.py b/neon_llm_chatgpt/chatgpt.py index b12f124..fe378bf 100644 --- a/neon_llm_chatgpt/chatgpt.py +++ b/neon_llm_chatgpt/chatgpt.py @@ -45,7 +45,6 @@ def __init__(self, config): self.context_depth = config["context_depth"] self.max_tokens = config["max_tokens"] self.api_key = config["key"] - self.num_parallel_processes = config["num_parallel_processes"] self.warmup() @property