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
11
//! Agent core logic and execution engine

pub mod base;
pub mod execution;
pub mod prompt;
pub mod trae_agent;

pub use base::{Agent, AgentResult};
pub use execution::AgentExecution;
pub use prompt::{TRAE_AGENT_SYSTEM_PROMPT, build_system_prompt_with_context, build_user_message};
pub use trae_agent::TraeAgent;