Struct MemoryPurgeTool
pub struct MemoryPurgeTool { /* private fields */ }Expand description
Let the agent bulk-delete memories by namespace or session
Implementations§
Source§impl MemoryPurgeTool
impl MemoryPurgeTool
pub fn new( memory: Arc<dyn Memory>, security: Arc<SecurityPolicy>, ) -> MemoryPurgeTool
Trait Implementations§
Source§impl Attributable for MemoryPurgeTool
impl Attributable for MemoryPurgeTool
fn role(&self) -> Role
fn alias(&self) -> &str
Source§fn tool_provenance(&self) -> ToolProvenance
fn tool_provenance(&self) -> ToolProvenance
Classifies whether a tool implementation is first-party native code or
an extension. The conservative default prevents a new wrapper from
inheriting native presentation privileges accidentally.
Source§impl Tool for MemoryPurgeTool
impl Tool for MemoryPurgeTool
Source§fn description(&self) -> &str
fn description(&self) -> &str
Human-readable description
Source§fn parameters_schema(&self) -> Value
fn parameters_schema(&self) -> Value
JSON schema for parameters
Source§fn execute<'life0, 'async_trait>(
&'life0 self,
args: Value,
) -> Pin<Box<dyn Future<Output = Result<ToolResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
MemoryPurgeTool: 'async_trait,
fn execute<'life0, 'async_trait>(
&'life0 self,
args: Value,
) -> Pin<Box<dyn Future<Output = Result<ToolResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
MemoryPurgeTool: 'async_trait,
Execute the tool with given arguments
Source§fn output_schema(&self) -> Option<Value>
fn output_schema(&self) -> Option<Value>
JSON schema describing the structured output this tool attaches to
ToolOutput::data, when it declares one. None means the tool
emits display text only; authoring surfaces fall back to
sample-derived shapes from captured runs.Source§fn param_domains(&self) -> Vec<(&'static str, OptionDomain)>
fn param_domains(&self) -> Vec<(&'static str, OptionDomain)>
Option domains for parameters whose value sets live in runtime
config rather than the static schema (channel refs, peer targets,
…). Surfaces resolve these through the runtime to render real
selectable choices. Default: no domain-typed parameters.
Source§fn invocation_triggers(&self) -> Vec<String>
fn invocation_triggers(&self) -> Vec<String>
Lowercase phrases that suggest an inbound message wants this tool —
e.g. routing wording or configured destination names for a delivery
tool. A pre-turn prefilter may scan the message against these and
nudge the model to consider the tool; the tool itself is never called
by the prefilter. Read more
Source§fn spec(&self) -> ToolSpec
fn spec(&self) -> ToolSpec
Assemble this tool’s spec. The default recomposes it from
parameters_schema() and allocates a fresh Arc per call, so tools
with large stored schemas override it to hand out Arc::clone
instead (see McpToolWrapper). Delegating wrappers around a
dyn Tool MUST forward spec() to the inner tool — relying on this
default silently reintroduces a per-iteration deep clone of the
inner schema and breaks Arc identity for downstream sharing.Auto Trait Implementations§
impl !RefUnwindSafe for MemoryPurgeTool
impl !UnwindSafe for MemoryPurgeTool
impl Freeze for MemoryPurgeTool
impl Send for MemoryPurgeTool
impl Sync for MemoryPurgeTool
impl Unpin for MemoryPurgeTool
impl UnsafeUnpin for MemoryPurgeTool
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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