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
//! Chat API handler for creating and managing agent conversations.
//!
//! This module provides the HTTP endpoint for initiating chat sessions with the AI agent.

mod handler;
mod prompt;
mod types;

pub use handler::handler;
pub use types::{ChatImage, ChatRequest, ChatResponse};

#[cfg(test)]
mod tests;