def get_time()

in tools/common/datetools.py [0:0]


def get_time() -> Annotated[str, "The output is the current time (hour and minutes) in HH:MM format"]:
    # Get the current time (hour and minutes)
    current_time = datetime.now().strftime("%H:%M")
    return f"The current time is {current_time}"