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
15
16
//! Plugin orchestration, sub-agent management, and lifecycle composition for AgentOS.
//!
//! - [`composition`]: agent definitions, builder, registries, and wiring.
//! - [`runtime`]: run preparation, execution, stop policies, and background tasks.
#![allow(missing_docs)]

pub use tirea_contract as contracts;

pub mod composition;
pub mod engine;
pub mod runtime;

// ── Top-level re-exports for common entry points ────────────────────────

pub use composition::{AgentDefinition, AgentOsBuilder, RegistrySet, ToolBehaviorBundle};
pub use runtime::{AgentOs, AgentOsRunError, PreparedRun, RunLaunchSpec, RunStream};