Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
bstraehle
/
multi-agent-ai-crewai
like
7
Running
App
Files
Files
Community
bstraehle
commited on
May 17
Commit
4eccbfe
•
1 Parent(s):
57b5f25
Create tools.py
Browse files
Files changed (1)
hide
show
tools.py
+8
-0
tools.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from crewai_tools import ScrapeWebsiteTool, SerperDevTool
2
+
3
+
4
+
def get_search_tool():
5
+
return SerperDevTool()
6
+
7
+
def get_scrape_tool():
8
+
return ScrapeWebsiteTool()