Final_Assignment_AG / a_tools.py
Andrew-Gl's picture
08.09.2025
eb0a714
raw
history blame
286 Bytes
from smolagents import Tool, FinalAnswerTool, WebSearchTool
image_generation_tool = Tool.from_space(
"black-forest-labs/FLUX.1-schnell",
name="image_generator",
description="Generate an image from a prompt"
)
search_tool = WebSearchTool()
final_answer = FinalAnswerTool()