pub struct CortexReflectTool { /* private fields */ }Expand description
MCP tool: cortex_reflect.
Schema:
cortex_reflect(
trace_id?: string,
) -> {
candidates: [{ claim, memory_type, confidence, domains }],
count: int,
}Returns the candidate memories recorded for the given trace (or the most
recent trace if trace_id is absent) as a read-only preview. Never writes
to the store.
Implementations§
Trait Implementations§
Source§impl Debug for CortexReflectTool
impl Debug for CortexReflectTool
Source§impl ToolHandler for CortexReflectTool
impl ToolHandler for CortexReflectTool
Auto Trait Implementations§
impl Freeze for CortexReflectTool
impl RefUnwindSafe for CortexReflectTool
impl Send for CortexReflectTool
impl Sync for CortexReflectTool
impl Unpin for CortexReflectTool
impl UnsafeUnpin for CortexReflectTool
impl UnwindSafe for CortexReflectTool
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