play7284 commited on
Commit
57c06b3
1 Parent(s): d6f5508

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,6 +1,10 @@
1
  import torch
2
  from transformers import pipeline
3
 
 
 
 
 
4
  model_id = "meta-llama/Llama-3.2-1B-Instruct"
5
  pipe = pipeline(
6
  "text-generation",
 
1
  import torch
2
  from transformers import pipeline
3
 
4
+ from huggingface_hub import login
5
+
6
+ login('your_token_here')
7
+
8
  model_id = "meta-llama/Llama-3.2-1B-Instruct"
9
  pipe = pipeline(
10
  "text-generation",