Update app.py
Browse files
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
|
7 |
from dotenv import load_dotenv
|
8 |
|
9 |
# Load environment variables
|
@@ -52,7 +52,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
52 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
53 |
try:
|
54 |
# agent = BasicAgent()
|
55 |
-
agent =
|
56 |
except Exception as e:
|
57 |
print(f"Error instantiating agent: {e}")
|
58 |
return f"Error initializing agent: {e}", None
|
|
|
3 |
import requests
|
4 |
import inspect
|
5 |
import pandas as pd
|
6 |
+
from agent import ClaudeAgent
|
7 |
from dotenv import load_dotenv
|
8 |
|
9 |
# Load environment variables
|
|
|
52 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
53 |
try:
|
54 |
# agent = BasicAgent()
|
55 |
+
agent = ClaudeAgent()
|
56 |
except Exception as e:
|
57 |
print(f"Error instantiating agent: {e}")
|
58 |
return f"Error initializing agent: {e}", None
|