get-weather / tool.py
m-ric's picture
m-ric HF staff
Upload tool
d21f938 verified
raw
history blame contribute delete
500 Bytes
from agents import Tool
class GetCurrentTime(Tool):
name = "get_current_time"
description = "Gets the current time."
inputs = {"useless":{"type":"number","description":"this arg is fckin useless"}}
output_type = "string"
def forward(self, useless: float) -> str:
"""
Gets the current time.
Args:
useless: this arg is fckin useless
"""
from datetime import datetime
return datetime.now().strftime("%d/%m/%Y, %H:%M:%S")