ABVM commited on
Commit
5dcdbc3
·
verified ·
1 Parent(s): 551ab80

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
3
  import requests
4
  import inspect
5
  import pandas as pd
6
- from agent import GaiaAgent
7
  from OpenRouter_Agent import MultiAgentSystem
8
 
9
  # (Keep Constants as is)
@@ -42,7 +42,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
42
 
43
  # 1. Instantiate Agent ( modify this part to create your agent)
44
  try:
45
- agent = GaiaAgent()
46
  except Exception as e:
47
  print(f"Error instantiating agent: {e}")
48
  return f"Error initializing agent: {e}", None
 
3
  import requests
4
  import inspect
5
  import pandas as pd
6
+ #from agent import GaiaAgent
7
  from OpenRouter_Agent import MultiAgentSystem
8
 
9
  # (Keep Constants as is)
 
42
 
43
  # 1. Instantiate Agent ( modify this part to create your agent)
44
  try:
45
+ agent = MultiAgentSystem()
46
  except Exception as e:
47
  print(f"Error instantiating agent: {e}")
48
  return f"Error initializing agent: {e}", None