pavan-d commited on
Commit
da5a304
·
verified ·
1 Parent(s): 7c8946b

enabled GAIAAgent

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -68,8 +68,8 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
68
  # 1. Instantiate Agent ( modify this part to create your agent)
69
  try:
70
  # agent = BasicAgent()
71
- # agent = GAIAAgent()
72
- agent = TestAgent()
73
  except Exception as e:
74
  print(f"Error instantiating agent: {e}")
75
  return f"Error initializing agent: {e}", None
 
68
  # 1. Instantiate Agent ( modify this part to create your agent)
69
  try:
70
  # agent = BasicAgent()
71
+ agent = GAIAAgent()
72
+ # agent = TestAgent()
73
  except Exception as e:
74
  print(f"Error instantiating agent: {e}")
75
  return f"Error initializing agent: {e}", None