change to Llama 3.2 3B
Browse files
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
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="Llama-3.2-
|
8 |
verbose=True,
|
9 |
use_mmap=True,
|
10 |
use_mlock=True,
|
|
|
1 |
import gradio as gr
|
2 |
from llama_cpp import Llama
|
3 |
|
4 |
+
model = "MaziyarPanahi/Llama-3.2-3B-Instruct-GGUF"
|
5 |
llm = Llama.from_pretrained(
|
6 |
repo_id=model,
|
7 |
+
filename="Llama-3.2-3B-Instruct.Q8_0.gguf",
|
8 |
verbose=True,
|
9 |
use_mmap=True,
|
10 |
use_mlock=True,
|