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
//! Core types and utilities (migrated from chat_core)
//!
//! This module provides the foundational types used across all chat-related functionality:
//! - `config` - Global backend configuration
//! - `encryption` - Encryption utilities
//! - `keyword_masking` - Keyword masking types
//! - `paths` - Path utilities (XDG-compliant)
//! - `todo` - TodoItem, TodoList for task tracking

pub mod config;
pub mod encryption;
pub mod keyword_masking;
pub mod model_mapping;
pub mod paths;
pub mod process_utils;
pub mod reasoning;
pub mod todo;

// Re-export commonly used types
pub use config::{
    AnthropicConfig, BodyPatch, BodyPatchOp, Config, CopilotConfig, EnvVarEntry, GeminiConfig,
    GeneratedValue, ModelRequestRule, OpenAIConfig, PatchValue, ProviderConfigs, ProxyAuth,
    RequestOverridesConfig, RequestScopeOverride, TemplateExpr, TemplateExprSpec,
};
pub use encryption::{decrypt, encrypt};
pub use keyword_masking::{KeywordEntry, KeywordMaskingConfig, MatchType};
pub use model_mapping::{AnthropicModelMapping, GeminiModelMapping};
pub use paths::*;
pub use reasoning::ReasoningEffort;
pub use todo::{TodoExecution, TodoItem, TodoItemType, TodoList, TodoListStatus, TodoStatus};