paladin-memory 0.1.0

Memory adapters for the Paladin framework — Garrison (conversation history) and Sanctum (vector search)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Memory services — application-layer orchestration over garrison and sanctum.
//!
//! Services depend only on port traits and contain no concrete adapter imports.

pub mod memory_extraction_service;
pub use memory_extraction_service::{
    ExtractedMemory, MemoryExtractionService, MemoryExtractionStrategy,
};

pub mod rag_retrieval_service;
pub use rag_retrieval_service::{
    RagConfig, RagRetrievalService, RetrievalTrigger, retrieve_context_with_timeout,
};