What problem does it solve?
Exo agents require configurable short-term and long-term memory along with persistence to maintain context across conversations. This skill provides a structured guide to configure memory backends (in-memory, SQLite, and vector stores), set up conversation_id scoping, and use embeddings to enable semantic search.
Core Features & Use Cases
- Configure short_term, long_term, and memory backends (in-memory, SQLiteMemoryStore, ChromaVectorMemoryStore) for deterministic memory behavior.
- Enable conversation_id scoping to support multi-topic or multi-session agents across chats.
- Leverage embeddings and persistence hooks to automate memory persistence and retrieval.
Quick Start
Create an Agent with a configured memory system (short_term, long_term, and persistence) and begin using conversation_id to scope conversations.