Cameron's void repo torn apart for local testing
at main 10 lines 241 B view raw
1#!/usr/bin/env bash 2# Refresh in-memory index from persisted JSON 3set -euo pipefail 4cd "$(dirname "$0")/.." 5source .venv/bin/activate 6python - <<'PY' 7from tools.memory_search import refresh_index 8refresh_index() 9print('Refresh complete') 10PY