Omnitopia commited on
Commit
b804a80
·
verified ·
1 Parent(s): 11db231

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 DuckDuckGoSearchTool, PythonMathTool
2
 
3
  my_tool_list = [
4
- DuckDuckGoSearchTool(),
5
- PythonMathTool(),
6
  ]
 
1
+ from smolagents.tools import WebSearchTool, PythonMathTool
2
 
3
  my_tool_list = [
4
+ WebSearchTool(), # 通用网页搜索
5
+ PythonMathTool(), # 代码和数学运算
6
  ]