codei-agent 0.0.8

CodeI ai-coding agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Agent loop orchestrating LLM, tools, and session.

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;