Release v1.2.1: API Export Hotfix
🐛 Hotfix: Missing API Export
This hotfix addresses a missing export in the public API.
Fixed
- API Export: Added missing
load_datetime_essentialto main__init__.pyexports- Previously the function existed in
helpers.pybut wasn't accessible viaimport basic_open_agent_tools - Now properly exported for public use:
from basic_open_agent_tools import load_datetime_essential
- Previously the function existed in
What's load_datetime_essential?
A curated loader function that provides the 13 most essential datetime tools for agents:
- Current values:
get_current_date,get_current_datetime,get_current_time - Date math:
add_days,add_hours,subtract_days,calculate_days_between - Validation:
is_valid_iso_date - Formatting:
format_date_human_readable,format_time_human_readable,format_duration - Parsing:
parse_date_string - Timezone:
convert_timezone
Installation
pip install --upgrade basic-open-agent-tools==1.2.1Full Changelog
v1.2.0...v1.2.1