bamboo-engine 2026.4.30

Execution engine and orchestration for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Metrics lifecycle helpers for the agent loop runner.

mod round_metrics;
mod session_metrics;

pub(super) use round_metrics::{
    record_round_and_session_error, record_round_completed, record_round_started,
};
pub(super) use session_metrics::{
    record_session_cancelled, record_session_completed_if_resolved, record_session_started,
};

#[cfg(test)]
mod tests;