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
//! Todo module - Task tracking types
//!
//! Provides TodoItem and TodoList for unified task execution tracking.

mod execution;
mod item;
mod list;

pub use execution::{TodoExecution, TodoStatus};
pub use item::{TodoItem, TodoItemType};
pub use list::{TodoList, TodoListStatus};