ask-the-web-agent / src /tools /__init__.py
debashis2007's picture
Upload folder using huggingface_hub
75bea1c verified
raw
history blame contribute delete
448 Bytes
"""Tools module for the Ask-the-Web Agent."""
from src.tools.base import Tool, ToolRegistry, ToolResult
from src.tools.web_search import WebSearchTool
from src.tools.web_scraper import WebScraperTool
from src.tools.calculator import CalculatorTool
from src.tools.datetime_tool import DateTimeTool
__all__ = [
"Tool",
"ToolRegistry",
"ToolResult",
"WebSearchTool",
"WebScraperTool",
"CalculatorTool",
"DateTimeTool",
]