codetether-rlm 0.1.0

Recursive Language Model processing for CodeTether
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! RLM model selection policy.
//!
//! Hosts provide providers and score signals; this crate owns the order
//! of precedence for choosing which RLM model reference to try.

mod configured;
mod defaults;
mod resolve;
#[cfg(test)]
mod tests;
mod types;

pub use defaults::RLM_MODEL_ENV;
pub use resolve::{select_rlm_model, select_rlm_model_with_env};
pub use types::{RlmModelChoice, RlmModelPurpose, RlmModelSource};