bamboo-server 2026.5.2

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Agent execution API handler.
//!
//! This module provides the HTTP endpoint for triggering AI agent execution
//! on a previously created chat session.

mod handler;
pub(crate) mod image_fallback;
pub(crate) mod runtime;
mod types;

pub use handler::handler;
pub(crate) use runtime::{spawn_agent_execution, spawn_event_forwarder};
pub use types::{
    ExecuteClientSync, ExecuteRequest, ExecuteResponse, ExecuteSyncInfo, ExecuteSyncReason,
};

#[cfg(test)]
mod tests;