pub struct CapabilityFeatures {
pub keyword_search: bool,
pub semantic_search: bool,
pub hybrid_recall: bool,
pub query_expansion: bool,
pub auto_consolidation: bool,
pub auto_tagging: bool,
pub contradiction_analysis: bool,
pub cross_encoder_reranking: bool,
pub memory_reflection: bool,
pub embedder_loaded: bool,
}Expand description
Boolean feature flags exposed in the capabilities report.
Fields§
§keyword_search: bool§semantic_search: bool§hybrid_recall: bool§query_expansion: bool§auto_consolidation: bool§auto_tagging: bool§contradiction_analysis: bool§cross_encoder_reranking: bool§memory_reflection: bool§embedder_loaded: boolv0.6.2 (S18): runtime-observed embedder state. semantic_search
above reflects configured capability (derived from the tier’s
embedding_model setting). embedder_loaded reflects actual
state after Embedder::load() attempted to materialize the
HuggingFace model on startup. When an operator configures the
semantic tier but the model download or mmap fails (offline
runner, read-only fs, missing tokens), semantic_search=true
would mislead. This flag exposes the truth so setup scripts can
assert the daemon is actually ready for semantic recall before
dispatching scenarios. Default false; populated by
handle_capabilities when the HTTP/MCP wrapper hands in the
live embedder handle.
Trait Implementations§
Source§impl Clone for CapabilityFeatures
impl Clone for CapabilityFeatures
Source§fn clone(&self) -> CapabilityFeatures
fn clone(&self) -> CapabilityFeatures
Returns a duplicate of the value. Read more
1.0.0 · 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 CapabilityFeatures
impl Debug for CapabilityFeatures
Source§impl<'de> Deserialize<'de> for CapabilityFeatures
impl<'de> Deserialize<'de> for CapabilityFeatures
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 CapabilityFeatures
impl RefUnwindSafe for CapabilityFeatures
impl Send for CapabilityFeatures
impl Sync for CapabilityFeatures
impl Unpin for CapabilityFeatures
impl UnsafeUnpin for CapabilityFeatures
impl UnwindSafe for CapabilityFeatures
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,
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