Skip to main content

agent_diva_core/session/
mod.rs

1//! Session management for conversation history
2//!
3//! Sessions store conversation history in JSONL format for easy
4//! reading and persistence.
5
6pub mod manager;
7pub mod store;
8
9pub use manager::{SessionInfo, SessionManager};
10pub use store::{ChatMessage, Session};