File size: 500 Bytes
fd6790e
 
 
 
 
ade7903
fd6790e
 
ade7903
fd6790e
 
ade7903
 
 
fd6790e
 
d21f938
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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")