trae-agent-rs-core 0.0.1

Core library for Trae Agent - LLM-based agent for software engineering tasks
Documentation
1
2
3
4
5
6
7
8
9
10
//! Tool system and built-in tools

pub mod base;
pub mod registry;
pub mod builtin;
pub mod utils;
pub mod output_formatter;

pub use base::{Tool, ToolCall, ToolResult, ToolExecutor, ToolExample};
pub use registry::{ToolRegistry, ToolFactory};