bamboo-server 2026.4.26

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

impl AppState {
    /// Save a complete session to persistent storage
    ///
    /// Writes the session metadata to the storage backend.
    ///
    /// # Arguments
    ///
    /// * `session` - Session object to save
    pub async fn save_session(&self, session: &bamboo_agent_core::Session) {
        let _ = self.storage.save_session(session).await;
    }
}