Omnitopia commited on
Commit
63677eb
·
verified ·
1 Parent(s): b804a80

Update my_tools.py

Browse files
Files changed (1) hide show
  1. my_tools.py +3 -3
my_tools.py CHANGED
@@ -1,6 +1,6 @@
1
- from smolagents.tools import WebSearchTool, PythonMathTool
2
 
3
  my_tool_list = [
4
- WebSearchTool(), # 通用网页搜索
5
- PythonMathTool(), # 代码和数学运算
6
  ]
 
1
+ from smolagents import DuckDuckGoSearchTool, PythonMathTool
2
 
3
  my_tool_list = [
4
+ DuckDuckGoSearchTool(),
5
+ PythonMathTool(),
6
  ]