tirea-agentos 0.5.0

Agent runtime with streaming LLM integration, sub-agent orchestration, and context window management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod conditions;
mod plugin;
mod state;

#[cfg(test)]
mod tests;

pub const STOP_POLICY_PLUGIN_ID: &str = "stop_policy";

pub use conditions::{
    ConsecutiveErrors, ContentMatch, LoopDetection, MaxRounds, StopOnTool, StopPolicy,
    StopPolicyInput, StopPolicyStats, Timeout, TokenBudget,
};
pub use plugin::StopPolicyPlugin;