bamboo-agent 2026.4.2

A fully self-contained AI agent backend framework with built-in web services, multi-LLM provider support, and comprehensive tool execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Initialize the logging system using tracing-subscriber.
pub fn init_logging(debug: bool) {
    use tracing_subscriber::EnvFilter;

    let filter = if debug { "debug" } else { "info" };
    tracing_subscriber::fmt()
        .with_target(true)
        .with_env_filter(
            EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new(filter)),
        )
        .init();
}