rmjones commited on
Commit
6098fce
·
verified ·
1 Parent(s): 5d91835

Adding error checking

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -29,6 +29,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
29
  submit_url = f"{api_url}/submit"
30
 
31
  # 1. Instantiate Agent ( modify this part to create your agent)
 
32
  try:
33
  agent = BasicAgent()
34
  except Exception as e:
 
29
  submit_url = f"{api_url}/submit"
30
 
31
  # 1. Instantiate Agent ( modify this part to create your agent)
32
+ print("Loading Agent ...")
33
  try:
34
  agent = BasicAgent()
35
  except Exception as e: