Davit6174 commited on
Commit
98954d2
·
verified ·
1 Parent(s): ef9da57

Update tools.py

Browse files
Files changed (1) hide show
  1. tools.py +7 -0
tools.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from langchain_community.tools.ddg_search import DuckDuckGoSearchRun
2
+
3
+ # Add more tools here later (e.g., calculator, file loader, etc.)
4
+
5
+ def get_tools():
6
+ search = DuckDuckGoSearchRun()
7
+ return [search]