Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -148,7 +148,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 148 |
|
| 149 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
| 150 |
try:
|
| 151 |
-
agent = BasicAgent()
|
| 152 |
except Exception as e:
|
| 153 |
print(f"Error instantiating agent: {e}")
|
| 154 |
return f"Error initializing agent: {e}", None
|
|
|
|
| 148 |
|
| 149 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
| 150 |
try:
|
| 151 |
+
agent = BasicAgent(system_prompt)
|
| 152 |
except Exception as e:
|
| 153 |
print(f"Error instantiating agent: {e}")
|
| 154 |
return f"Error initializing agent: {e}", None
|