MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / search

Method search

src/memory/retrieval.rs:36–45  ·  view source on GitHub ↗
(
        &self,
        query: &str,
        category: Option<MemoryCategory>,
        min_trust: Option<f64>,
        limit: usize,
    )

Source from the content-addressed store, hash-verified

34 }
35
36 pub async fn search(
37 &self,
38 query: &str,
39 category: Option<MemoryCategory>,
40 min_trust: Option<f64>,
41 limit: usize,
42 ) -> Result<Vec<FactSearchResult>> {
43 self.search_with_tracking(query, category, min_trust, limit, true)
44 .await
45 }
46
47 pub async fn search_untracked(
48 &self,

Callers 15

turn_is_validFunction · 0.45
extract_token_hintsFunction · 0.45
validate_fact_proposalFunction · 0.45
handle_searchFunction · 0.45
handle_similarFunction · 0.45
handle_branch_searchFunction · 0.45
handle_simplify_scanFunction · 0.45
body_candidatesFunction · 0.45
handle_fact_storeFunction · 0.45
test_full_pipelineFunction · 0.45
test_incremental_syncFunction · 0.45
test_search_empty_indexFunction · 0.45

Calls 1

search_with_trackingMethod · 0.80