Nienke5821 commited on
Commit
528bcdc
·
verified ·
1 Parent(s): 81917a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
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 ---
@@ -18,6 +19,7 @@ class BasicAgent:
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):
23
  """
@@ -40,7 +42,15 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
40
 
41
  # 1. Instantiate Agent ( modify this part to create your agent)
42
  try:
43
- agent = BasicAgent()
 
 
 
 
 
 
 
 
44
  except Exception as e:
45
  print(f"Error instantiating agent: {e}")
46
  return f"Error initializing agent: {e}", None
 
3
  import requests
4
  import inspect
5
  import pandas as pd
6
+ from smolagents import CodeAgent, WebSearchTool, InferenceClientModel, VisitWebpageTool, FinalAnswerTool, Tool, tool
7
 
8
  # (Keep Constants as is)
9
  # --- Constants ---
 
19
  fixed_answer = "This is a default answer."
20
  print(f"Agent returning fixed answer: {fixed_answer}")
21
  return fixed_answer
22
+
23
 
24
  def run_and_submit_all( profile: gr.OAuthProfile | None):
25
  """
 
42
 
43
  # 1. Instantiate Agent ( modify this part to create your agent)
44
  try:
45
+ agent = CodeAgent(
46
+ tools=[
47
+ WebSearchTool(),
48
+ VisitWebpageTool(),
49
+ ],
50
+ model=InferenceClientModel(),
51
+ max_steps=10,
52
+ verbosity_level=2
53
+ )
54
  except Exception as e:
55
  print(f"Error instantiating agent: {e}")
56
  return f"Error initializing agent: {e}", None