feat: current_time, current_datetime

This commit is contained in:
Timothy J. Baek
2024-06-16 10:39:48 -06:00
parent 5d0b77e64a
commit fc1a66ea76
2 changed files with 19 additions and 1 deletions

View File

@@ -13,9 +13,13 @@ def prompt_template(
# Format the date to YYYY-MM-DD
formatted_date = current_date.strftime("%Y-%m-%d")
formatted_time = current_date.strftime("%I:%M:%S %p")
# Replace {{CURRENT_DATE}} in the template with the formatted date
template = template.replace("{{CURRENT_DATE}}", formatted_date)
template = template.replace("{{CURRENT_TIME}}", formatted_time)
template = template.replace(
"{{CURRENT_DATETIME}}", f"{formatted_date} {formatted_time}"
)
if user_name:
# Replace {{USER_NAME}} in the template with the user's name