pub enum AgentMemoryPerTurnInjection {
Off,
Budgeted,
}Expand description
Ambient per-turn memory injection mode.
Off is the default: per-turn injection prepends memory into the delivered
user message, which persists in the transcript and is re-indexed into
meerkat’s session semantic memory at compaction (the D1 echo loop). Until an
indexing-excluded delivery class exists, the echo-safe surfaces — build-time
instructions and explicit recall tool results — are the defaults, and
ambient push is an explicit opt-in bounded by the injection budget ladder.
Variants§
Off
Budgeted
Ambient per-turn recall, budget-laddered and dedup’d, delivered as a separate typed injected-context body (meerkat 0.7.12 ask 1). Now the default: echo-safe by construction (excluded from compaction indexing) and delivered on an authenticated channel rather than fused into user text. Active on the identity-first path; the classic (roster-less) mob path still injects at build time only (§9.1).
Trait Implementations§
Source§impl Clone for AgentMemoryPerTurnInjection
impl Clone for AgentMemoryPerTurnInjection
Source§fn clone(&self) -> AgentMemoryPerTurnInjection
fn clone(&self) -> AgentMemoryPerTurnInjection
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AgentMemoryPerTurnInjection
impl Debug for AgentMemoryPerTurnInjection
Source§impl Default for AgentMemoryPerTurnInjection
impl Default for AgentMemoryPerTurnInjection
Source§fn default() -> AgentMemoryPerTurnInjection
fn default() -> AgentMemoryPerTurnInjection
Source§impl<'de> Deserialize<'de> for AgentMemoryPerTurnInjection
impl<'de> Deserialize<'de> for AgentMemoryPerTurnInjection
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>,
impl Eq for AgentMemoryPerTurnInjection
Source§impl PartialEq for AgentMemoryPerTurnInjection
impl PartialEq for AgentMemoryPerTurnInjection
Source§fn eq(&self, other: &AgentMemoryPerTurnInjection) -> bool
fn eq(&self, other: &AgentMemoryPerTurnInjection) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentMemoryPerTurnInjection
Auto Trait Implementations§
impl Freeze for AgentMemoryPerTurnInjection
impl RefUnwindSafe for AgentMemoryPerTurnInjection
impl Send for AgentMemoryPerTurnInjection
impl Sync for AgentMemoryPerTurnInjection
impl Unpin for AgentMemoryPerTurnInjection
impl UnsafeUnpin for AgentMemoryPerTurnInjection
impl UnwindSafe for AgentMemoryPerTurnInjection
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.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>
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