Skip to content

Release v1.2.1: API Export Hotfix

Choose a tag to compare

@jwesleye jwesleye released this 10 Nov 14:12
· 22 commits to main since this release

🐛 Hotfix: Missing API Export

This hotfix addresses a missing export in the public API.

Fixed

  • API Export: Added missing load_datetime_essential to main __init__.py exports
    • Previously the function existed in helpers.py but wasn't accessible via import basic_open_agent_tools
    • Now properly exported for public use: from basic_open_agent_tools import load_datetime_essential

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.1

Full Changelog

v1.2.0...v1.2.1