Pre-built database files and models
These files are too large for the Git repository. Download them and place in the project root.
Files
| File | Size | Description |
|---|---|---|
elections.db |
1.2 GB | SQLite database with Israeli (K14-K25) and U.S. (2000-2024) election data. Used as source for PostgreSQL migration. |
chroma_db.tar.gz |
47 MB | ChromaDB vector store with 22,799 embedded text chunks (all-MiniLM-L6-v2, 384-dim). Extract with tar -xzf chroma_db.tar.gz. |
distilbert-router.tar.gz |
235 MB | Fine-tuned DistilBERT question router for Config 3 (fixed routing). Extract to models/: tar -xzf distilbert-router.tar.gz -C models/. |
Setup
- Download all files to the
election-agent/project root - Extract ChromaDB:
tar -xzf chroma_db.tar.gz - Extract model:
mkdir -p models && tar -xzf distilbert-router.tar.gz -C models/ - Migrate to PostgreSQL:
python migrate_to_postgres.py - See README for full instructions