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
//! HTTP request controllers (handlers)
//!
//! This module organizes HTTP request handlers by domain/feature area.
//! Each controller handles a specific set of related endpoints.

pub mod agent_controller;
pub mod anthropic;
pub use anthropic::*;
pub mod command_controller;
pub mod copilot_auth_controller;
pub mod gemini_controller;
pub mod openai_controller;
pub mod settings_controller;
pub mod skill_controller;
pub mod tools_controller;
pub mod workspace_controller;