RafaelJaime commited on
Commit
01280dc
·
verified ·
1 Parent(s): 44c00e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
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 = "This is a default answer."
19
- print(f"Agent returning fixed answer: {fixed_answer}")
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):