SagaMKM commited on
Commit
287ffa2
·
verified ·
1 Parent(s): 76e0e92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ if not token:
11
 
12
 
13
  model_id = "meta-llama/Llama-3.2-1B-Instruct"
14
- tokenizer = AutoTokenizer.from_pretrained(model_id, use_auth_token=token)
15
- model = AutoModelForCausalLM.from_pretrained(model_id, use_auth_token=token)
16
 
17
  pipe = pipeline(
18
  "text-generation",
 
11
 
12
 
13
  model_id = "meta-llama/Llama-3.2-1B-Instruct"
14
+ tokenizer = AutoTokenizer.from_pretrained(model_id, token=token)
15
+ model = AutoModelForCausalLM.from_pretrained(model_id, token=token)
16
 
17
  pipe = pipeline(
18
  "text-generation",