agent-diva-core 0.5.0

Core types and traits for agent-diva
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Memory management for long-term storage.
//!
//! Handles loading and updating of `MEMORY.md` and `HISTORY.md`.

pub mod manager;
pub mod provider;
pub mod storage;

pub use manager::MemoryManager;
pub use provider::{
    MemoryProvider, PrefetchRequest, PrefetchResponse, PrefetchStatus, RhythmTrigger,
    SessionEndRequest, SessionEndResponse, SessionEndStatus, StartupContextSnapshot,
    StartupInjectionShape, StartupStatus, SyncTurnRequest, SyncTurnResponse, SyncTurnStatus,
    SystemPromptBlock, SystemPromptRequest, SystemPromptResponse, WakeupPackSummary,
};
pub use storage::{DailyNote, Memory};