Spaces:
Build error
Build error
from agents import Tool | |
class GetCurrentTime(Tool): | |
name = "get_current_time" | |
description = "Gets the current time." | |
inputs = {} | |
output_type = "string" | |
def forward(self) -> str: | |
""" | |
Gets the current time. | |
""" | |
from datetime import datetime | |
return datetime.now().strftime() |