crystalkalem
commited on
Commit
•
69d433a
1
Parent(s):
d3e1f96
Update app.py
Browse files
app.py
CHANGED
@@ -15,9 +15,9 @@ description = f"Chat with <a href=\"https://huggingface.co/{model_id}\">{model_n
|
|
15 |
|
16 |
# Initialize the LLM
|
17 |
llm = Llama(model_path="model.gguf",
|
18 |
-
n_ctx=
|
19 |
n_threads=2,
|
20 |
-
n_vocab=
|
21 |
n_gpu_layers=-1,
|
22 |
chat_format=chat_template)
|
23 |
|
|
|
15 |
|
16 |
# Initialize the LLM
|
17 |
llm = Llama(model_path="model.gguf",
|
18 |
+
n_ctx=65536,
|
19 |
n_threads=2,
|
20 |
+
n_vocab=64004,
|
21 |
n_gpu_layers=-1,
|
22 |
chat_format=chat_template)
|
23 |
|