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 events;
mod execution;
mod reservation;
mod session_state;

#[cfg(test)]
mod tests;

pub(super) use events::spawn_event_forwarder;
pub(super) use execution::{spawn_agent_execution, SpawnAgentExecution};
pub(super) use reservation::{reserve_runner, RunnerReservation};
pub(super) use session_state::{
    consume_pending_conclusion_with_options_resume, has_pending_user_message,
};