mobinln commited on
Commit
6bbad9a
·
verified ·
1 Parent(s): df48b1a

change to llama 3.1 8b

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,10 +1,10 @@
1
  import gradio as gr
2
  from llama_cpp import Llama
3
 
4
- model = "Salesforce/xLAM-1b-fc-r-gguf"
5
  llm = Llama.from_pretrained(
6
  repo_id=model,
7
- filename="xLAM-1b-fc-r.F16.gguf",
8
  verbose=True,
9
  use_mmap=False,
10
  use_mlock=True,
 
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-IQ4_XS.gguf",
8
  verbose=True,
9
  use_mmap=False,
10
  use_mlock=True,