Vinay Kerai commited on
Commit
4c8fdf1
·
1 Parent(s): 120aac4

create instance of agent

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -128,7 +128,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
128
 
129
  # 1. Instantiate Agent ( modify this part to create your agent)
130
  try:
131
- agent = BasicAgent()
132
  except Exception as e:
133
  print(f"Error instantiating agent: {e}")
134
  return f"Error initializing agent: {e}", None
 
128
 
129
  # 1. Instantiate Agent ( modify this part to create your agent)
130
  try:
131
+ agent = GAIAAgent()
132
  except Exception as e:
133
  print(f"Error instantiating agent: {e}")
134
  return f"Error initializing agent: {e}", None