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
//! Agent resolution and wiring: compose behaviors, tools, and plugins into a
//! runnable agent configuration.

mod behavior;
pub(crate) mod bundle_merge;
pub(crate) mod resolve;
#[cfg(feature = "skills")]
pub(crate) mod skills;

pub(super) use behavior::CompositeBehavior;
pub use behavior::{compose_behaviors, PluginOrderingCycleError};
pub(super) use bundle_merge::{ensure_unique_behavior_ids, merge_wiring_bundles};
#[cfg(feature = "skills")]
pub(crate) use skills::SkillsSystemWiring;