Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,7 @@ import gradio as gr
|
|
3 |
import requests
|
4 |
import inspect
|
5 |
import pandas as pd
|
|
|
6 |
|
7 |
# (Keep Constants as is)
|
8 |
# --- Constants ---
|
@@ -14,9 +15,16 @@ class BasicAgent:
|
|
14 |
def __init__(self):
|
15 |
print("BasicAgent initialized.")
|
16 |
def __call__(self, question: str) -> str:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
18 |
-
fixed_answer =
|
19 |
-
print(f"Agent returning
|
20 |
return fixed_answer
|
21 |
|
22 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
|
3 |
import requests
|
4 |
import inspect
|
5 |
import pandas as pd
|
6 |
+
from smolagents import OpenRouterModel, DuckDuckGoSearchTool, PythonInterpreterTool, WikipediaSearchTool, CodeAgent
|
7 |
|
8 |
# (Keep Constants as is)
|
9 |
# --- Constants ---
|
|
|
15 |
def __init__(self):
|
16 |
print("BasicAgent initialized.")
|
17 |
def __call__(self, question: str) -> str:
|
18 |
+
self.agent = CodeAgent(
|
19 |
+
model=OpenRouterModel(
|
20 |
+
model_id="anthropic:claude-3.7-sonnet",
|
21 |
+
api_key=os.environ["OPENROUTER_API_KEY"]
|
22 |
+
),
|
23 |
+
tools=[DuckDuckGoSearchTool(), PythonInterpreterTool(), WikipediaSearchTool()]
|
24 |
+
)
|
25 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
26 |
+
fixed_answer = self.agent.run(question)
|
27 |
+
print(f"Agent returning answer: {fixed_answer}")
|
28 |
return fixed_answer
|
29 |
|
30 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|