Memory System Demo
Table of Contents
1. Local Agent Memory System Demo
A practical implementation of short-term and long-term memory for AI agents using PostgreSQL.
1.1. Structure
- src/
- Python implementation
- sql/
- Database schema and migrations
- tests/
- Test suite
1.2. Quick Start
# Install dependencies pip install psycopg[binary] numpy # Setup database psql -f sql/schema.sql # Run demo python src/demo.py
1.3. Architecture
See Memory Systems section in main documentation.