change to llama 3.1
Browse files
app.py
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
import gradio as gr
|
2 |
from llama_cpp import Llama
|
3 |
|
4 |
-
model = "
|
5 |
llm = Llama.from_pretrained(
|
6 |
repo_id=model,
|
7 |
-
filename="
|
8 |
verbose=True,
|
9 |
use_mmap=False,
|
10 |
use_mlock=True,
|
11 |
n_threads=2,
|
12 |
n_threads_batch=2,
|
13 |
-
n_ctx=
|
14 |
)
|
15 |
|
16 |
|
|
|
1 |
import gradio as gr
|
2 |
from llama_cpp import Llama
|
3 |
|
4 |
+
model = "lmstudio-community/Meta-Llama-3.1-8B-Instruct-GGUF"
|
5 |
llm = Llama.from_pretrained(
|
6 |
repo_id=model,
|
7 |
+
filename="Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf",
|
8 |
verbose=True,
|
9 |
use_mmap=False,
|
10 |
use_mlock=True,
|
11 |
n_threads=2,
|
12 |
n_threads_batch=2,
|
13 |
+
n_ctx=80000,
|
14 |
)
|
15 |
|
16 |
|