Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct AcgComponentConfig {
pub provider: String,
pub observation_window: usize,
pub priority: i32,
pub stability_thresholds: StabilityThresholds,
}
Typed helper for the built-in Adaptive Cache Governor (ACG) component.
provider: StringWhich provider plugin to activate (e.g. “anthropic”, “openai”, “passthrough”).
observation_window: usizeRolling observation window size. Default: 100.
priority: i32LLM execution intercept priority. Default: 50.
stability_thresholds: StabilityThresholdsStability classification thresholds used by the learner.
impl Clone for AcgComponentConfigimpl Clone for AcgComponentConfig
clonefn clone(&self) -> AcgComponentConfig
clone_fromfn clone_from(&mut self, source: &Self)
impl Debug for AcgComponentConfigimpl Debug for AcgComponentConfig
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Default for AcgComponentConfigimpl Default for AcgComponentConfig
defaultfn default() -> Self
impl<'de> Deserialize<'de> for AcgComponentConfigimpl<'de> Deserialize<'de> for AcgComponentConfig
deserializefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl EditorConfig for AcgComponentConfigimpl EditorConfig for AcgComponentConfig
editor_schemafn editor_schema() -> &'static EditorSchema
impl Serialize for AcgComponentConfigimpl Serialize for AcgComponentConfig
serializefn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,