Trait Toolset
pub trait Toolset: Send + Sync {
// Required method
fn get_tools(&self) -> Vec<Arc<dyn ToolFunction>>;
// Provided method
fn close<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait { ... }
}Expand description
A collection of tools that can be enumerated.