Skip to main content

tirea_agent_loop/
lib.rs

1//! LLM inference engine, tool dispatch, and streaming execution loop.
2//!
3//! - [`engine`]: context window management, token estimation, and tool execution helpers.
4//! - [`runtime`]: the core agent loop, streaming, and run lifecycle coordination.
5#![allow(missing_docs)]
6
7pub use tirea_contract as contracts;
8pub mod engine;
9pub mod runtime;