APRG commited on
Commit
7a64580
·
verified ·
1 Parent(s): a6f5173

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -199,7 +199,7 @@ def maybe_exit_human_node(state: OrderState) -> Literal["agent", "__end__"]:
199
  auto_tools = []
200
  tool_node = ToolNode(auto_tools)
201
 
202
- interactive_tools = [wikipedia_search]
203
 
204
  # Bind all tools to the LLM
205
  llm_with_tools = llm.bind_tools(auto_tools + interactive_tools)
 
199
  auto_tools = []
200
  tool_node = ToolNode(auto_tools)
201
 
202
+ interactive_tools = [wikipedia_search_tool, media_tool, internet_search_tool, webscraper_tool, read_excel_tool]
203
 
204
  # Bind all tools to the LLM
205
  llm_with_tools = llm.bind_tools(auto_tools + interactive_tools)