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