zeroclaw/src/agent/mod.rs
Chummy c293561be2
supersede: file-replay changes from #1639
Automated conflict recovery via changed-file replay on latest dev.
2026-02-25 02:18:16 +00:00

17 lines
315 B
Rust

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