1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) 2024-2027 Nervosys LLC // SPDX-License-Identifier: AGPL-3.0-only //! Routing module //! //! Intelligent routing of conversations to optimal models and providers. pub mod continuation; pub mod model_router; pub mod recommendations; pub use continuation::*; pub use model_router::*; pub use recommendations::*;