Expand description
Read-only queries across sessions for analytics and long-term learning.
Structs§
- Fact
Record - A single grounded fact drawn from a session’s memory envelope.
- Memory
Search Result - One result returned from a memory search.
- Session
Summary - Lightweight summary of a single session, read from its
manifest.json.
Functions§
- default_
search_ max_ results - Return the configured default for
max_resultsin search queries. - default_
search_ min_ score - Return the configured default for
min_scorein search queries. - query_
facts - Cross-session long-term-learning query: collect grounded facts from every session’s derived memory envelope. This is how the agent learns across sessions without loading any history into context.
- recent_
sessions - List up to
nmost-recently-updated sessions. - search_
memory - Cross-session memory search: scan every session’s derived memory envelope
for facts matching
query. Returns up tomax_resultsresults with score >=min_score, sorted by descending relevance.