Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
108 |
|
109 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
110 |
try:
|
111 |
-
agent =
|
112 |
except Exception as e:
|
113 |
print(f"Error instantiating agent: {e}")
|
114 |
return f"Error initializing agent: {e}", None
|
|
|
108 |
|
109 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
110 |
try:
|
111 |
+
agent = init_agent()
|
112 |
except Exception as e:
|
113 |
print(f"Error instantiating agent: {e}")
|
114 |
return f"Error initializing agent: {e}", None
|