bamboo-agent 2026.4.12

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
use actix_web::web;

use super::{complete, get_models, messages};

pub fn config(cfg: &mut web::ServiceConfig) {
    cfg.route("/messages", web::post().to(messages))
        .route("/complete", web::post().to(complete))
        .route("/models", web::get().to(get_models));
}