Abraham E. Tavarez commited on
Commit ·
8952f30
1
Parent(s): 48777c4
python tool removed
Browse files- hf_tool_calling_agent.py +2 -2
hf_tool_calling_agent.py
CHANGED
|
@@ -23,14 +23,14 @@ from sample_questions import QUESTIONS
|
|
| 23 |
|
| 24 |
# Tools
|
| 25 |
|
| 26 |
-
wikipedia = Tool.from_langchain(load_tools(["wikipedia"])[0])
|
| 27 |
|
| 28 |
tools = [
|
| 29 |
DuckDuckGoSearchTool(),
|
| 30 |
VisitWebpageTool(),
|
| 31 |
# PythonInterpreterTool(),
|
| 32 |
FinalAnswerTool(),
|
| 33 |
-
wikipedia,
|
| 34 |
]
|
| 35 |
|
| 36 |
# Model
|
|
|
|
| 23 |
|
| 24 |
# Tools
|
| 25 |
|
| 26 |
+
# wikipedia = Tool.from_langchain(load_tools(["wikipedia"])[0])
|
| 27 |
|
| 28 |
tools = [
|
| 29 |
DuckDuckGoSearchTool(),
|
| 30 |
VisitWebpageTool(),
|
| 31 |
# PythonInterpreterTool(),
|
| 32 |
FinalAnswerTool(),
|
| 33 |
+
# wikipedia,
|
| 34 |
]
|
| 35 |
|
| 36 |
# Model
|