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
//! Workspace management handlers.

mod handlers;
mod path;
mod store;
mod types;

pub use handlers::{
    add_recent_workspace, browse_folder, config, get_recent_workspaces, get_workspace_suggestions,
    list_workspace_files, validate_workspace,
};

#[cfg(test)]
mod tests;