pub struct SelectorParams {
pub temperature: f32,
pub selection_bar: String,
pub shuffle_manifest: bool,
pub recall_timeout_ms: u64,
pub working_set_k: usize,
pub max_output_tokens: u32,
}Expand description
Params table of a selector calibration profile. Field set mirrors
memory-evals/profiles/selector-v0.toml; keep the two in sync.
Fields§
§temperature: f32§selection_bar: String§shuffle_manifest: bool§recall_timeout_ms: u64§working_set_k: usizeK for the WorkingSet manifest tier the per-turn side-query reads.
max_output_tokens: u32Trait Implementations§
Source§impl Clone for SelectorParams
impl Clone for SelectorParams
Source§fn clone(&self) -> SelectorParams
fn clone(&self) -> SelectorParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SelectorParams
impl Debug for SelectorParams
Source§impl Default for SelectorParams
impl Default for SelectorParams
Source§impl<'de> Deserialize<'de> for SelectorParams
impl<'de> Deserialize<'de> for SelectorParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SelectorParams
impl RefUnwindSafe for SelectorParams
impl Send for SelectorParams
impl Sync for SelectorParams
impl Unpin for SelectorParams
impl UnsafeUnpin for SelectorParams
impl UnwindSafe for SelectorParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more