Weyaxi commited on
Commit
7121331
1 Parent(s): 1840d1a

Defaulting the leaderboard-pr-bot

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -177,10 +177,11 @@ def get_edited_yaml_readme(repo, token: str | None):
177
 
178
  def commit(repo, pr_number=None, message="Adding Evaluation Results", oauth_token: gr.OAuthToken | None = None): # specify pr number if you want to edit it, don't if you don't want
179
  if oauth_token is None:
180
- raise gr.Error("You must be logged in to open a PR. Click on 'Sign in with Huggingface' first.")
 
181
  if oauth_token.expires_at < time.time():
182
  raise gr.Error("Token expired. Logout and try again.")
183
- token = oauth_token.token
184
 
185
  if repo.startswith("https://huggingface.co/"):
186
  try:
 
177
 
178
  def commit(repo, pr_number=None, message="Adding Evaluation Results", oauth_token: gr.OAuthToken | None = None): # specify pr number if you want to edit it, don't if you don't want
179
  if oauth_token is None:
180
+ gr.Warning("You are not logged in; therefore, the leaderboard-pr-bot will open the pull request instead of you. Click on 'Sign in with Huggingface' to log in.")
181
+ token = BOT_HF_TOKEN
182
  if oauth_token.expires_at < time.time():
183
  raise gr.Error("Token expired. Logout and try again.")
184
+ token = token if token else oauth_token.token
185
 
186
  if repo.startswith("https://huggingface.co/"):
187
  try: