File size: 468 Bytes
5ee9bfb
9a7f84c
 
 
 
 
0f51d62
 
 
 
 
 
060bcfa
 
 
0f51d62
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from ..tools import (
    FinalAnswerTool,
    PoliteGuardTool,
    DuckDuckGoSearchTool,
    get_the_current_time_in_timezone
)

# Initialize tools
final_answer = FinalAnswerTool()
polite_guard = PoliteGuardTool()
web_search = DuckDuckGoSearchTool()

# Import tool from Hub
#image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)

# Define all tools
tools = [final_answer, polite_guard, web_search, get_the_current_time_in_timezone]