23 lines
496 B
Rust
23 lines
496 B
Rust
#[allow(clippy::module_inception)]
|
|
pub mod agent;
|
|
pub mod classifier;
|
|
pub mod context_analyzer;
|
|
pub mod context_compressor;
|
|
pub mod dispatcher;
|
|
pub mod eval;
|
|
pub mod history_pruner;
|
|
pub mod loop_;
|
|
pub mod loop_detector;
|
|
pub mod memory_loader;
|
|
pub mod personality;
|
|
pub mod prompt;
|
|
pub mod thinking;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use agent::{Agent, AgentBuilder, TurnEvent};
|
|
#[allow(unused_imports)]
|
|
pub use loop_::{process_message, process_message_with_extra_tools, run};
|