ContentAgent / tools /tools.py
yetessam's picture
Add load_tools() method
edeb4b3 verified
raw
history blame contribute delete
546 Bytes
from .final_answer import FinalAnswerTool
from .polite_guard import PoliteGuardTool
from .web_search import DuckDuckGoSearchTool
from .time_tool import 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
def load_tools():
return [final_answer, polite_guard, web_search, get_the_current_time_in_timezone]