What Gets Persisted
- Memory: Conversation history and context
- Session State: Current task progress
- Checkpoints: Intermediate results
- Configuration: Agent settings
Quick Start
Persistence Backends
| Backend | Use Case | Setup |
|---|---|---|
| SQLite | Local development | persistence="sqlite" |
| PostgreSQL | Production | persistence="postgresql" |
| Redis | High-performance | persistence="redis" |
| MongoDB | Document storage | persistence="mongodb" |
CLI Session Resume
praisonai session resume <id> is a first-class restore — it brings back chat history, model, and agent name. Use a follow-up prompt to continue immediately:
--transcript and cross-store lookup behaviour.
Related
Database Setup
Configure backends
Session Resume
Resume sessions

