ejschwartz commited on
Commit
f37ed6f
·
1 Parent(s): e62c0db
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ filename = "aidapal-8k.Q4_K_M.gguf"
9
 
10
  print("Downloading model")
11
 
12
- tokenizer = AutoTokenizer.from_pretrained(model_id)
13
  model = AutoModelForCausalLM.from_pretrained(
14
  model_id,
15
  gguf_file=filename,
 
9
 
10
  print("Downloading model")
11
 
12
+ tokenizer = AutoTokenizer.from_pretrained(model_id, gguf_file=filename)
13
  model = AutoModelForCausalLM.from_pretrained(
14
  model_id,
15
  gguf_file=filename,