Files
gpt_academic/autogpt/commands/times.py
2023-04-28 09:53:51 +08:00

11 lines
244 B
Python

from datetime import datetime
def get_datetime() -> str:
"""Return the current date and time
Returns:
str: The current date and time
"""
return "Current date and time: " + datetime.now().strftime("%Y-%m-%d %H:%M:%S")