Nancy1906 commited on
Commit
0d3532f
·
verified ·
1 Parent(s): c8cbf23

Update my_tools.py

Browse files
Files changed (1) hide show
  1. my_tools.py +2 -1
my_tools.py CHANGED
@@ -68,7 +68,8 @@ alfred_agent = ReActAgent.from_tools(
68
  def basic_agent_response(question):
69
  response = alfred_agent.query(question)
70
  return str(response)
71
-
 
72
  # --- Constants ---
73
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
74
 
 
68
  def basic_agent_response(question):
69
  response = alfred_agent.query(question)
70
  return str(response)
71
+
72
+ tools = [search_tool, wikipedia_tool, calculator_tool]
73
  # --- Constants ---
74
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
75