cortex-mem-core 2.7.0

Core memory management engine for Cortex Memory system
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod manager;
pub mod message;
pub mod timeline;
pub mod participant;
pub mod extraction;

pub use manager::{SessionManager, SessionConfig, SessionMetadata, SessionStatus};

// SessionStatus and SessionMetadata are available but not currently exported
// pub use manager::{SessionMetadata, SessionStatus};
pub use message::{Message, MessageRole, MessageStorage};
pub use timeline::{TimelineGenerator, TimelineEntry, TimelineAggregation};
pub use participant::{Participant, ParticipantRole, ParticipantManager};
pub use extraction::{MemoryExtractor, ExtractedMemories, PreferenceMemory, EntityMemory, EventMemory, CaseMemory};