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
mod config;
mod conversion;
mod generate;
mod models;
mod stream;
mod usage;

pub use config::config;
pub use generate::generate_content;
pub use models::list_models;
pub use stream::stream_generate_content;

#[cfg(test)]
mod tests;