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
12
13
14
15
16
17
//! Configuration management and parsing

pub mod agent_config;
pub mod model_config;
pub mod provider_config;
pub mod config;
pub mod api_config;
pub mod cache;
pub mod loader;

pub use config::Config;
pub use agent_config::AgentConfig;
pub use model_config::ModelConfig;
pub use provider_config::ProviderConfig;
pub use api_config::{ApiProvider, ApiProviderConfig, OpenAIConfig, AnthropicConfig, GoogleConfig};
pub use cache::ConfigCache;
pub use loader::ConfigLoader;