Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
43 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
44 |
try:
|
45 |
# agent = BasicAgent()
|
46 |
-
agent =
|
47 |
except Exception as e:
|
48 |
print(f"Error instantiating agent: {e}")
|
49 |
return f"Error initializing agent: {e}", None
|
|
|
43 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
44 |
try:
|
45 |
# agent = BasicAgent()
|
46 |
+
agent = ClaudeAgent()
|
47 |
except Exception as e:
|
48 |
print(f"Error instantiating agent: {e}")
|
49 |
return f"Error initializing agent: {e}", None
|