agent-diva-core 0.5.0

Core types and traits for agent-diva
Documentation
1
2
3
4
5
6
7
8
9
10
//! Session management for conversation history
//!
//! Sessions store conversation history in JSONL format for easy
//! reading and persistence.

pub mod manager;
pub mod store;

pub use manager::{SessionInfo, SessionManager};
pub use store::{ChatMessage, Session};