1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Agent loop orchestrating LLM, tools, and session. mod compact; mod error; mod event; mod loop_; mod prompt; mod task_tool; mod tool_args; pub use error::AgentError; pub use event::AgentEvent; pub use loop_::{AgentLoop, TurnOutcome}; pub use prompt::build_system_prompt;