Spaces:
Running
Running
from crewai_tools import ScrapeWebsiteTool, SerperDevTool, tool | |
def search_tool(): | |
return SerperDevTool() | |
def scrape_tool(): | |
return ScrapeWebsiteTool() | |
def today_tool() -> str: | |
"""Returns today's date. Use this for any questions related to knowing today's date. | |
Any date mathematics should occur outside this function.""" | |
return str(date.today()) |