pub struct CortexPrinciplesExtractTool { /* private fields */ }Expand description
MCP tool: cortex_principles_extract.
Schema:
cortex_principles_extract(
limit?: int, // default 10, max 50
domains?: [string], // optional domain filter
) → { candidates: [{ id, claim, confidence, domains }], count: int }Returns principle candidates derived from active memories using the deterministic replay extraction path. Never writes to the store.
Implementations§
Trait Implementations§
Source§impl Debug for CortexPrinciplesExtractTool
impl Debug for CortexPrinciplesExtractTool
Auto Trait Implementations§
impl Freeze for CortexPrinciplesExtractTool
impl RefUnwindSafe for CortexPrinciplesExtractTool
impl Send for CortexPrinciplesExtractTool
impl Sync for CortexPrinciplesExtractTool
impl Unpin for CortexPrinciplesExtractTool
impl UnsafeUnpin for CortexPrinciplesExtractTool
impl UnwindSafe for CortexPrinciplesExtractTool
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