Skip to main content

codetether_rlm/model_select/
mod.rs

1//! RLM model selection policy.
2//!
3//! Hosts provide providers and score signals; this crate owns the order
4//! of precedence for choosing which RLM model reference to try.
5
6mod configured;
7mod defaults;
8mod resolve;
9#[cfg(test)]
10mod tests;
11mod types;
12
13pub use defaults::RLM_MODEL_ENV;
14pub use resolve::{select_rlm_model, select_rlm_model_with_env};
15pub use types::{RlmModelChoice, RlmModelPurpose, RlmModelSource};