zeroclaw/src/agent/mod.rs

14 lines
277 B
Rust

#[allow(clippy::module_inception)]
pub mod agent;
pub mod dispatcher;
pub mod loop_;
pub mod memory_loader;
pub mod prompt;
#[cfg(test)]
mod tests;
#[allow(unused_imports)]
pub use agent::{Agent, AgentBuilder};
#[allow(unused_imports)]
pub use loop_::{process_message, run};