Update tools.py
Browse files
tools.py
CHANGED
|
@@ -24,7 +24,8 @@ def load_llm_model():
|
|
| 24 |
repo_id="bartowski/Llama-3.2-1B-Instruct-GGUF",
|
| 25 |
filename="Llama-3.2-1B-Instruct-Q8_0.gguf",
|
| 26 |
n_ctx=50000,
|
| 27 |
-
n_batch=
|
|
|
|
| 28 |
)
|
| 29 |
print("LLM model loaded successfully")
|
| 30 |
return llm
|
|
|
|
| 24 |
repo_id="bartowski/Llama-3.2-1B-Instruct-GGUF",
|
| 25 |
filename="Llama-3.2-1B-Instruct-Q8_0.gguf",
|
| 26 |
n_ctx=50000,
|
| 27 |
+
n_batch=16384,
|
| 28 |
+
verbose=False,
|
| 29 |
)
|
| 30 |
print("LLM model loaded successfully")
|
| 31 |
return llm
|