bamboo-agent 2026.4.5

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
13
14
15
16
17
18
mod config_endpoints;
mod model_mapping;
mod proxy_auth;
mod tools;
mod types;
mod validation;

#[cfg(test)]
mod tests;

pub use config_endpoints::{
    get_bamboo_config, get_model_limit_defaults, reset_bamboo_config, set_bamboo_config,
};
pub use model_mapping::{get_anthropic_model_mapping, set_anthropic_model_mapping};
pub use proxy_auth::{get_proxy_auth_status, set_proxy_auth};
pub use tools::get_bamboo_tools;
pub use types::ProxyAuthPayload;
pub use validation::validate_bamboo_config_patch;