from upsonic import Agent, Taskfrom upsonic.tools import tool@tooldef sum_tool(a: float, b: float) -> float: """ Add two numbers together. Args: a: First number b: Second number Returns: The sum of a and b """ return a + b# Create task with the tooltask = Task( description="Calculate 15 + 27", tools=[sum_tool])# Create agentagent = Agent(model="openai/gpt-4o", name="Calculator Agent")# Executeagent.print_do(task)