Skip to main content

RecallRequest

Struct RecallRequest 

Source
pub struct RecallRequest {
    pub query: Vec<f32>,
    pub top_k: usize,
    pub memory_types: Option<Vec<MemoryType>>,
    pub agent_id: Option<String>,
    pub metric: Metric,
    pub weights: ScoreWeights,
    pub n_probe: Option<usize>,
    pub n_rerank: Option<usize>,
    pub track_access: bool,
}
Expand description

A retrieval request for Mnemo::recall.

Fields§

§query: Vec<f32>

Query embedding.

§top_k: usize

Maximum results to return.

§memory_types: Option<Vec<MemoryType>>

Restrict to these memory types (None = all types).

§agent_id: Option<String>

Restrict to a single agent’s view: its own memories plus shared ones.

§metric: Metric

Similarity metric.

§weights: ScoreWeights

Multi-signal score weights.

§n_probe: Option<usize>

Index override: partitions to probe (None = index default). Ignored when no ANN index is present.

§n_rerank: Option<usize>

Index override: candidates to rerank (None = index default). Ignored when no ANN index is present.

§track_access: bool

Whether to update each result’s accessed_at and access_count in the catalog. Defaults to true, matching pre-v5 behavior.

Set to false for fully read-only recall — useful for batch scoring, dry-run scoring, or recalls run by introspection tooling (e.g. mnemo about consumers) where you don’t want the score’s own observation to perturb the database. With false, recall does not dirty the catalog and the next flush is a no-op.

Implementations§

Source§

impl RecallRequest

Source

pub fn new(query: Vec<f32>) -> Self

A request with sensible defaults for a query embedding.

Source

pub fn top_k(self, k: usize) -> Self

Set the result cap.

Source

pub fn types(self, t: Vec<MemoryType>) -> Self

Restrict to specific memory types.

Source

pub fn agent(self, agent_id: impl Into<String>) -> Self

Restrict to one agent’s view.

Source

pub fn metric(self, metric: Metric) -> Self

Set the similarity metric (default: cosine).

Source

pub fn weights(self, weights: ScoreWeights) -> Self

Replace the multi-signal score weights.

Source

pub fn n_probe(self, n: usize) -> Self

Override the number of IVF partitions probed (accuracy/speed dial).

Source

pub fn n_rerank(self, n: usize) -> Self

Override the number of candidates reranked exactly (accuracy dial).

Source

pub fn track_access(self, track: bool) -> Self

Toggle whether recall updates accessed_at / access_count on the returned memories’ catalog entries (default true). Pass false for a fully read-only recall — see the field doc.

Trait Implementations§

Source§

impl Clone for RecallRequest

Source§

fn clone(&self) -> RecallRequest

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RecallRequest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V