get_current_date
Retrieve the current date in ISO format (YYYY-MM-DD) with an option to include the day of the week for accurate date referencing and time-sensitive operations.
Instructions
Get the current date in ISO format (YYYY-MM-DD).
Args: include_weekday: Whether to append the day of the week
Returns: ISO date string, optionally with weekday
Examples: get_current_date() -> "2024-01-15" get_current_date(include_weekday=True) -> "2024-01-15 (Monday)"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_weekday | No |