Skip to content

Releases: YardenMorad2003/election-agent

v1.0 — Pre-built databases

Choose a tag to compare

@YardenMorad2003 YardenMorad2003 released this 01 Apr 21:19

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

  1. Download all files to the election-agent/ project root
  2. Extract ChromaDB: tar -xzf chroma_db.tar.gz
  3. Extract model: mkdir -p models && tar -xzf distilbert-router.tar.gz -C models/
  4. Migrate to PostgreSQL: python migrate_to_postgres.py
  5. See README for full instructions