Minimal memory system (encode + memory). Local Postgres by default.
- Start local Postgres and load schema:
./scripts/local_db.sh- Create
.env:
cp .env.example .env- Create a venv and install deps:
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .- Run the interactive prompt:
./hippo chat- Watch live logs:
./hippo logs --follow- Watch live memory changes:
./hippo watchOPENROUTER_API_KEY=your_key
OPENROUTER_API_BASE=https://openrouter.ai/api/v1
OPENROUTER_MODEL=google/gemini-2.0-flash-001
OPENROUTER_APP_URL=http://localhost
OPENROUTER_APP_NAME=hippo.c-1DEEPSEEK_API_KEY=your_key
DEEPSEEK_API_BASE=https://api.deepseek.com/v1
DEEPSEEK_MODEL=deepseek-chatThe extractor uses OpenRouter if OPENROUTER_API_KEY is set; otherwise it falls back to DeepSeek.