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
13
14
15
mod chat;
mod config;
pub(crate) mod helpers;
mod models;
mod responses;
mod types;
mod usage;

#[cfg(test)]
mod tests;

pub use chat::chat_completions;
pub use config::config;
pub use models::get_models;
pub use responses::responses_create;