attach_core_tools

Macro attach_core_tools 

Source
macro_rules! attach_core_tools {
    ($builder:expr) => { ... };
}
Expand description

Attach the core analysis tools to an agent builder.

These are the standard tools available to all agents and subagents for code analysis tasks. Does NOT include delegation tools (Workspace, ParallelAnalyze, sub-agent) to prevent recursion.

§Usage

let agent = attach_core_tools!(client.agent(model).preamble("..."));