Classify incoming user messages by keyword/pattern and route to the appropriate model hint automatically, feeding into the existing RouterProvider. Disabled by default; opt-in via [query_classification] config section. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
297 B
Rust
16 lines
297 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;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use agent::{Agent, AgentBuilder};
|
|
#[allow(unused_imports)]
|
|
pub use loop_::{process_message, run};
|