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

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 import DuckDuckGoSearchTool, PythonMathTool
2
 
3
  my_tool_list = [
4
- DuckDuckGoSearchTool(),
5
- PythonMathTool(),
6
  ]
 
1
+ from smolagents import DuckDuckGoSearchTool, PythonInterpreterTool
2
 
3
  my_tool_list = [
4
+ DuckDuckGoSearchTool(), # 用来查网页
5
+ PythonInterpreterTool(), # 可以跑代码、算数、分析 CSV
6
  ]