bamboo-server 2026.4.25

HTTP server and API layer for the Bamboo agent framework
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));
}