dwb2023 commited on
Commit
9d2cbd3
·
verified ·
1 Parent(s): def12f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ from huggingface_hub import login
7
  # Get the HF token from environment variables
8
  hf_token = os.getenv("HF_TOKEN")
9
  if hf_token:
10
- login(token=hf_token)
11
  else:
12
  raise ValueError("HF_TOKEN environment variable is not set")
13
 
 
7
  # Get the HF token from environment variables
8
  hf_token = os.getenv("HF_TOKEN")
9
  if hf_token:
10
+ login(token=hf_token, add_to_git_credential=True)
11
  else:
12
  raise ValueError("HF_TOKEN environment variable is not set")
13