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: PlannedFeature,
pub embedder_loaded: bool,
pub recall_mode_active: RecallMode,
pub reranker_active: RerankerMode,
}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: PlannedFeatureMemory-reflection (v0.7+): planned, not yet implemented.
Was a bool before the P1 honesty patch; an object now so
operators can tell “feature exists but disabled” apart from
“feature not in this build”.
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.
recall_mode_active: RecallModev0.6.3.1 (P1 honesty patch): runtime recall-mode tag. Reflects
the live embedder + LLM availability, not the configured tier.
See RecallMode.
reranker_active: RerankerModev0.6.3.1 (P1 honesty patch): runtime reranker-mode tag.
Reflects the live CrossEncoder variant. See RerankerMode.
Trait Implementations§
Source§impl Clone for CapabilityFeatures
impl Clone for CapabilityFeatures
Source§fn clone(&self) -> CapabilityFeatures
fn clone(&self) -> CapabilityFeatures
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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>,
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
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>
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>
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