bstraehle's picture
Update tools.py
adfab55 verified
raw
history blame
505 Bytes
from crewai_tools import ScrapeWebsiteTool, SerperDevTool, tool
def search_tool():
return SerperDevTool()
def scrape_tool():
return ScrapeWebsiteTool()
@tool("Today tool")
def today_tool(text: str) -> str:
"""Returns today's date. Use this for any questions related to knowing today's date.
The input should always be an empty string, and this function will always return today's date.
Any date mathematics should occur outside this function."""
return str(date.today())