File size: 333 Bytes
fd6790e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()