File size: 448 Bytes
75bea1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""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",
]