Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 = [
|
| 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)
|