meerkat-tools 0.3.0

Tool validation and dispatch for Meerkat
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Utility tools for general-purpose agent operations
//!
//! This module provides utility tools that are useful across many agent workflows:
//! - [`WaitTool`] - Pause execution for a specified duration
//! - [`DateTimeTool`] - Get the current date and time
//!
//! These tools are enabled by default when built-in tools are enabled.

mod datetime;
mod tool_set;
mod wait;

pub use datetime::DateTimeTool;
pub use tool_set::UtilityToolSet;
pub use wait::{WaitInterrupt, WaitTool};