1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
//! `Memory` — the primary public API for the Engram memory layer.
//!
//! `Memory` composes a `FactStore`, `VectorStore`, `GraphStore`, and
//! `EmbeddingProvider` into a single high-level interface. Callers interact
//! with `Memory` rather than the lower-level trait objects directly.
use crate::consolidation::{ConsolidationConfig, ConsolidationEngine, ConsolidationResult};
use crate::context::{ContextBlock, ContextBuilder, ContextConfig};
use crate::embedding::EmbeddingProvider;
use crate::extract::{ExtractionConfig, Message};
use crate::fact::{Entity, Fact, FactFilter, FactId, Relationship};
use crate::graph::GraphStore;
use crate::graph_postgres::PostgresGraphStore;
use crate::graph_sqlite::SqliteGraphStore;
use crate::llm::LlmClient;
use crate::message::{ChatMessage, MessageId, MessageStore};
use crate::message_postgres::PostgresMessageStore;
use crate::message_sqlite::SqliteMessageStore;
use crate::pipeline::ExtractionPipeline;
use crate::scope::Scope;
use crate::store::{FactStore, MemoryError, StoreStats};
use crate::store_postgres::PostgresFactStore;
use crate::store_sqlite::SqliteFactStore;
use crate::vector::{VectorFilter, VectorStore};
use crate::vector_embedded::EmbeddedVectorStore;
use chrono::{DateTime, Utc};
use std::collections::HashMap;
use std::sync::Arc;
// ---------------------------------------------------------------------------
// RecallQuery
// ---------------------------------------------------------------------------
/// Parameters for a semantic recall operation.
#[derive(Debug, Clone, Default)]
pub struct RecallQuery {
/// The text to embed and search for semantically similar facts.
pub query: String,
/// Optional scope filter — only return facts within this scope.
pub scope: Option<Scope>,
/// Maximum number of results to return (default: 10).
pub max_results: usize,
/// Point-in-time filter — only return facts valid at this instant.
pub as_of: Option<DateTime<Utc>>,
/// Minimum cosine similarity score (0.0 – 1.0).
pub min_score: Option<f32>,
}
// ---------------------------------------------------------------------------
// Memory
// ---------------------------------------------------------------------------
/// High-level memory API for AI agents.
///
/// `Memory` wires together fact storage, vector search, graph storage, and an
/// embedding provider. Most callers should construct it via `in_memory` or
/// `open` rather than calling `new` directly.
pub struct Memory {
fact_store: Arc<dyn FactStore>,
vector_store: Arc<dyn VectorStore>,
graph_store: Arc<dyn GraphStore>,
embedding: Arc<dyn EmbeddingProvider>,
message_store: Option<Arc<dyn MessageStore>>,
}
impl Memory {
// -----------------------------------------------------------------------
// Constructors
// -----------------------------------------------------------------------
/// Construct `Memory` from explicit store and embedding instances.
pub fn new(
fact_store: Arc<dyn FactStore>,
vector_store: Arc<dyn VectorStore>,
graph_store: Arc<dyn GraphStore>,
embedding: Arc<dyn EmbeddingProvider>,
) -> Self {
Self {
fact_store,
vector_store,
graph_store,
embedding,
message_store: None,
}
}
/// Builder method — attach a `MessageStore` to this `Memory` instance.
pub fn with_message_store(mut self, store: Arc<dyn MessageStore>) -> Self {
self.message_store = Some(store);
self
}
/// Create a fully in-memory `Memory` instance backed by SQLite `:memory:`.
///
/// Schema migration is applied automatically. Suitable for testing and
/// short-lived agent invocations.
pub async fn in_memory(embedding: Box<dyn EmbeddingProvider>) -> Result<Self, MemoryError> {
let dims = embedding.dimensions();
let embedding = Arc::from(embedding);
let fact_store = SqliteFactStore::open("sqlite::memory:")
.await
.map_err(|e| MemoryError::Database(format!("failed to open in-memory SQLite: {e}")))?;
fact_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("fact store migration failed: {e}")))?;
let graph_store = SqliteGraphStore::open("sqlite::memory:")
.await
.map_err(|e| MemoryError::Database(format!("failed to open in-memory graph: {e}")))?;
graph_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("graph store migration failed: {e}")))?;
let message_store = SqliteMessageStore::open("sqlite::memory:")
.await
.map_err(|e| {
MemoryError::Database(format!("failed to open in-memory message store: {e}"))
})?;
message_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("message store migration failed: {e}")))?;
let vector_store = EmbeddedVectorStore::new(dims);
Ok(Self {
fact_store: Arc::new(fact_store),
vector_store: Arc::new(vector_store),
graph_store: Arc::new(graph_store),
embedding,
message_store: Some(Arc::new(message_store)),
})
}
/// Open a file-backed `Memory` instance at `database_url`.
///
/// Uses SQLite for facts and graph data, with an in-process
/// `EmbeddedVectorStore` for semantic search. Schema migration is applied
/// automatically.
pub async fn open(
database_url: &str,
embedding: Box<dyn EmbeddingProvider>,
) -> Result<Self, MemoryError> {
let dims = embedding.dimensions();
let embedding = Arc::from(embedding);
let fact_store = SqliteFactStore::open(database_url)
.await
.map_err(|e| MemoryError::Database(format!("failed to open SQLite: {e}")))?;
fact_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("fact store migration failed: {e}")))?;
let graph_store = SqliteGraphStore::open(database_url)
.await
.map_err(|e| MemoryError::Database(format!("failed to open graph SQLite: {e}")))?;
graph_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("graph store migration failed: {e}")))?;
let message_store = SqliteMessageStore::open(database_url).await.map_err(|e| {
MemoryError::Database(format!("failed to open message store SQLite: {e}"))
})?;
message_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("message store migration failed: {e}")))?;
let vector_store = EmbeddedVectorStore::new(dims);
Ok(Self {
fact_store: Arc::new(fact_store),
vector_store: Arc::new(vector_store),
graph_store: Arc::new(graph_store),
embedding,
message_store: Some(Arc::new(message_store)),
})
}
/// Open a PostgreSQL-backed `Memory` instance at `database_url`.
///
/// Uses Postgres for facts, graph, and message data, with an in-process
/// `EmbeddedVectorStore` for semantic search. Schema migration is applied
/// automatically.
pub async fn open_postgres(
database_url: &str,
embedding: Box<dyn EmbeddingProvider>,
) -> Result<Self, MemoryError> {
let dims = embedding.dimensions();
let embedding = Arc::from(embedding);
let fact_store = PostgresFactStore::open(database_url)
.await
.map_err(|e| MemoryError::Database(format!("failed to open Postgres: {e}")))?;
fact_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("fact store migration failed: {e}")))?;
let graph_store = PostgresGraphStore::open(database_url)
.await
.map_err(|e| MemoryError::Database(format!("failed to open graph Postgres: {e}")))?;
graph_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("graph store migration failed: {e}")))?;
let message_store = PostgresMessageStore::open(database_url)
.await
.map_err(|e| {
MemoryError::Database(format!("failed to open message store Postgres: {e}"))
})?;
message_store
.migrate()
.await
.map_err(|e| MemoryError::Database(format!("message store migration failed: {e}")))?;
let vector_store = EmbeddedVectorStore::new(dims);
Ok(Self {
fact_store: Arc::new(fact_store),
vector_store: Arc::new(vector_store),
graph_store: Arc::new(graph_store),
embedding,
message_store: Some(Arc::new(message_store)),
})
}
// -----------------------------------------------------------------------
// Write operations
// -----------------------------------------------------------------------
/// Embed `text`, create a `Fact`, and persist it in both the fact store
/// and the vector store.
///
/// Returns the `FactId` of the newly created fact.
pub async fn add_fact(&self, text: &str, scope: Scope) -> Result<FactId, MemoryError> {
// Embed text.
let mut embeddings = self.embedding.embed(&[text]).await?;
let embedding = embeddings.pop().ok_or_else(|| {
MemoryError::Embedding("provider returned empty embeddings".to_string())
})?;
// Build and persist the fact.
let mut fact = Fact::new(text, scope);
fact.embedding = embedding.clone();
let id = self.fact_store.insert_fact(fact).await?;
// Insert into vector store.
let metadata = serde_json::json!({ "fact_id": id.to_string() });
self.vector_store.upsert(id, embedding, metadata).await?;
Ok(id)
}
/// Semantically recall facts matching `query`.
///
/// Embeds the query text, performs vector search, fetches full facts from
/// the fact store, filters by validity and scope, and records an access
/// event for each returned fact.
pub async fn recall(&self, query: &RecallQuery) -> Result<Vec<Fact>, MemoryError> {
let max_results = if query.max_results == 0 {
10
} else {
query.max_results
};
// Embed the query.
let mut embeddings = self.embedding.embed(&[query.query.as_str()]).await?;
let query_vec = embeddings.pop().ok_or_else(|| {
MemoryError::Embedding("provider returned empty embeddings".to_string())
})?;
// Vector search.
let filter = VectorFilter {
scope: query.scope.clone(),
min_score: query.min_score,
};
let matches = self
.vector_store
.search(&query_vec, &filter, max_results)
.await?;
// Fetch full facts from the fact store.
let mut facts = Vec::with_capacity(matches.len());
for vm in matches {
match self.fact_store.get_fact(vm.id).await {
Ok(fact) => {
// Validity filter.
let valid = match query.as_of {
Some(t) => fact.is_valid_at(t),
None => fact.is_valid(),
};
if !valid {
continue;
}
// Scope filter (post-fetch).
if let Some(ref scope) = query.scope {
if !scope.contains(&fact.scope) {
continue;
}
}
// Record access (fire-and-forget; ignore error).
let _ = self.fact_store.record_access(fact.id).await;
facts.push(fact);
}
Err(MemoryError::NotFound(_)) => {
// Vector store has a stale entry — skip silently.
}
Err(e) => return Err(e),
}
}
Ok(facts)
}
// -----------------------------------------------------------------------
// Read operations
// -----------------------------------------------------------------------
/// List currently-valid facts for the given scope.
pub async fn list_facts(&self, scope: Option<Scope>) -> Result<Vec<Fact>, MemoryError> {
let filter = match scope {
Some(s) => FactFilter::new().with_scope(s),
None => FactFilter::new(),
};
self.fact_store.list_facts(&filter).await
}
// -----------------------------------------------------------------------
// Mutation operations
// -----------------------------------------------------------------------
/// Invalidate (soft-delete) a fact and remove it from the vector store.
///
/// The fact record is preserved for historical queries. `reason` is
/// currently logged via tracing but not stored (reserved for future use).
pub async fn forget(&self, id: FactId, _reason: Option<&str>) -> Result<(), MemoryError> {
self.fact_store.invalidate_fact(id).await?;
self.vector_store.delete(id).await?;
Ok(())
}
/// Hard-delete all data (facts, vectors, graph nodes/edges) for `scope`.
///
/// Returns the number of facts deleted. Intended for GDPR / right-to-erasure
/// requests.
pub async fn delete_user_data(&self, scope: Scope) -> Result<u64, MemoryError> {
let fact_count = self.fact_store.delete_scope_data(&scope).await?;
self.vector_store.delete_by_scope(&scope).await?;
self.graph_store.delete_by_scope(&scope).await?;
Ok(fact_count)
}
// -----------------------------------------------------------------------
// Stats & export/import
// -----------------------------------------------------------------------
/// Return aggregate statistics for the fact store.
pub async fn stats(&self, _scope: Option<Scope>) -> Result<StoreStats, MemoryError> {
self.fact_store.stats().await
}
/// Export all currently-valid facts for `scope`.
pub async fn export(&self, scope: Option<Scope>) -> Result<Vec<Fact>, MemoryError> {
let filter = match scope {
Some(s) => FactFilter::new().with_scope(s),
None => FactFilter::new(),
};
self.fact_store.export(&filter).await
}
/// Import a batch of facts, re-embedding each one.
///
/// Returns the number of facts successfully imported (skips duplicates by id).
pub async fn import(&self, facts: Vec<Fact>) -> Result<u64, MemoryError> {
let mut imported: u64 = 0;
for mut fact in facts {
// Re-embed the fact text.
let mut embeddings = self.embedding.embed(&[fact.text.as_str()]).await?;
let embedding = embeddings.pop().ok_or_else(|| {
MemoryError::Embedding("provider returned empty embeddings".to_string())
})?;
fact.embedding = embedding.clone();
let fact_id = fact.id;
self.fact_store.insert_fact(fact).await?;
let metadata = serde_json::json!({ "fact_id": fact_id.to_string() });
self.vector_store
.upsert(fact_id, embedding, metadata)
.await?;
imported += 1;
}
Ok(imported)
}
// -----------------------------------------------------------------------
// Consolidation
// -----------------------------------------------------------------------
/// Run a consolidation cycle over the given scope.
///
/// Operations (decay, promote, dedup, summarize, reflect) are controlled
/// by `config.enabled_ops`. LLM-dependent operations (summarize, reflect)
/// are skipped when `llm` is `None`.
pub async fn consolidate(
&self,
scope: &Scope,
llm: Option<&dyn LlmClient>,
config: ConsolidationConfig,
) -> Result<ConsolidationResult, MemoryError> {
let engine = ConsolidationEngine::new(
self.fact_store.clone(),
self.vector_store.clone(),
self.embedding.clone(),
config,
);
engine.run(scope, llm).await
}
// -----------------------------------------------------------------------
// Context assembly
// -----------------------------------------------------------------------
/// Assemble a token-budgeted context block for LLM prompt injection.
///
/// Retrieves relevant facts via hybrid search (vector + keyword + graph),
/// ranks by tier priority (Working > Conversation > Knowledge), fills the
/// token budget greedily, and formats the output.
pub async fn context(
&self,
query: &str,
scope: &Scope,
config: ContextConfig,
) -> Result<ContextBlock, MemoryError> {
let builder = ContextBuilder::new(
self.fact_store.clone(),
self.vector_store.clone(),
self.graph_store.clone(),
self.embedding.clone(),
config,
);
builder.build(query, scope).await
}
// -----------------------------------------------------------------------
// Extraction pipeline
// -----------------------------------------------------------------------
/// Ingest conversation messages: extract facts via LLM, detect conflicts,
/// store facts + entities + relationships.
///
/// Returns the IDs of newly created facts.
pub async fn add_messages(
&self,
messages: &[Message],
scope: Scope,
llm: Box<dyn LlmClient>,
config: ExtractionConfig,
) -> Result<Vec<FactId>, MemoryError> {
let pipeline = ExtractionPipeline::new(llm, config);
let extraction = pipeline.extract(messages).await?;
let mut fact_ids = Vec::new();
for extracted in extraction.facts {
// Create and embed the fact
let mut embeddings = self.embedding.embed(&[extracted.text.as_str()]).await?;
let embedding = embeddings
.pop()
.ok_or_else(|| MemoryError::Embedding("empty embedding".to_string()))?;
let mut fact = Fact::new(&extracted.text, scope.clone());
fact.confidence = Some(extracted.confidence as f32);
fact.category = extracted.category;
fact.embedding = embedding.clone();
let id = self.fact_store.insert_fact(fact).await?;
self.vector_store
.upsert(id, embedding, serde_json::json!({}))
.await?;
// Store entities in graph
let mut entity_map: HashMap<String, uuid::Uuid> = HashMap::new();
for ext_entity in &extracted.entities {
let entity = Entity::new(&ext_entity.name, scope.clone())
.with_type(ext_entity.entity_type.as_deref().unwrap_or("unknown"));
entity_map.insert(ext_entity.name.clone(), entity.id);
self.graph_store.upsert_entity(&entity).await?;
}
// Store relationships in graph
for ext_rel in &extracted.relationships {
if let (Some(&src_id), Some(&tgt_id)) = (
entity_map.get(&ext_rel.source),
entity_map.get(&ext_rel.target),
) {
let rel = Relationship::new(src_id, &ext_rel.relation, tgt_id, scope.clone());
self.graph_store.upsert_relationship(&rel).await?;
}
}
fact_ids.push(id);
}
Ok(fact_ids)
}
// -----------------------------------------------------------------------
// Accessors
// -----------------------------------------------------------------------
/// Access the underlying `FactStore`.
pub fn fact_store(&self) -> &Arc<dyn FactStore> {
&self.fact_store
}
/// Access the underlying `VectorStore`.
pub fn vector_store(&self) -> &Arc<dyn VectorStore> {
&self.vector_store
}
/// Access the underlying `GraphStore`.
pub fn graph_store(&self) -> &Arc<dyn GraphStore> {
&self.graph_store
}
/// Access the underlying `MessageStore`, if configured.
pub fn message_store(&self) -> Option<&Arc<dyn MessageStore>> {
self.message_store.as_ref()
}
// -----------------------------------------------------------------------
// Chat message operations
// -----------------------------------------------------------------------
/// Save chat messages to a conversation.
pub async fn save_chat_messages(
&self,
conversation_id: &str,
messages: &[ChatMessage],
scope: &Scope,
) -> Result<Vec<MessageId>, MemoryError> {
let store = self
.message_store
.as_ref()
.ok_or_else(|| MemoryError::Database("message store not configured".to_string()))?;
store.save_messages(conversation_id, messages, scope).await
}
/// Retrieve chat messages from a conversation.
pub async fn get_chat_messages(
&self,
conversation_id: &str,
last_n: Option<usize>,
scope: &Scope,
) -> Result<Vec<ChatMessage>, MemoryError> {
let store = self
.message_store
.as_ref()
.ok_or_else(|| MemoryError::Database("message store not configured".to_string()))?;
store.get_messages(conversation_id, last_n, scope).await
}
/// List all conversations visible to the given scope.
pub async fn list_conversations(&self, scope: &Scope) -> Result<Vec<String>, MemoryError> {
let store = self
.message_store
.as_ref()
.ok_or_else(|| MemoryError::Database("message store not configured".to_string()))?;
store.list_conversations(scope).await
}
/// Delete all messages in a conversation.
pub async fn delete_chat_messages(
&self,
conversation_id: &str,
scope: &Scope,
) -> Result<u64, MemoryError> {
let store = self
.message_store
.as_ref()
.ok_or_else(|| MemoryError::Database("message store not configured".to_string()))?;
store.delete_messages(conversation_id, scope).await
}
}